[BACK]Return to optfunc.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / less

Diff for /src/usr.bin/less/optfunc.c between version 1.10 and 1.11

version 1.10, 2015/11/05 22:08:44 version 1.11, 2015/11/06 15:50:33
Line 1 
Line 1 
 /*  /*
  * Copyright (C) 1984-2012  Mark Nudelman   * Copyright (C) 1984-2012  Mark Nudelman
    * Modified for use with illumos by Garrett D'Amore.
    * Copyright 2014 Garrett D'Amore <garrett@damore.org>
  *   *
  * You may distribute under the terms of either the GNU General Public   * You may distribute under the terms of either the GNU General Public
  * License or the Less License, as specified in the README file.   * License or the Less License, as specified in the README file.
  *   *
  * For more information, see the README file.   * For more information, see the README file.
  */   */
 /*  
  * Modified for use with illumos.  
  * Copyright 2014 Garrett D'Amore <garrett@damore.org>  
  */  
   
 /*  /*
  * Handling functions for command line options.   * Handling functions for command line options.
Line 417 
Line 415 
                 putstr(" (");                  putstr(" (");
                 putstr("POSIX ");                  putstr("POSIX ");
                 putstr("regular expressions)\n");                  putstr("regular expressions)\n");
                 putstr("Copyright (C) 1984-2012 Mark Nudelman\n\n");                  putstr("Copyright (C) 1984-2012 Mark Nudelman\n");
                   putstr("Modified for use with illumos by Garrett D'Amore.\n");
                   putstr("Copyright 2014 Garrett D'Amore\n\n");
                 putstr("less comes with NO WARRANTY, ");                  putstr("less comes with NO WARRANTY, ");
                 putstr("to the extent permitted by law.\n");                  putstr("to the extent permitted by law.\n");
                 putstr("For information about the terms of redistribution,\n");                  putstr("For information about the terms of redistribution,\n");
                 putstr("see the file named README in the less distribution.\n");                  putstr("see the file named README in the less distribution.\n");
                 putstr("Homepage: http://www.greenwoodsoftware.com/less\n");                  putstr("Homepage: http://www.greenwoodsoftware.com/less\n");
                 putstr("\n");                  putstr("\n");
                 putstr("Modified for use with illumos.\n");  
                 putstr("Copyright 2014 Garrett D'Amore\n");  
                 quit(QUIT_OK);                  quit(QUIT_OK);
                 break;                  break;
         }          }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11