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

Diff for /src/usr.bin/rcs/rcsprog.c between version 1.84 and 1.85

version 1.84, 2006/03/23 09:03:28 version 1.85, 2006/03/24 05:14:48
Line 29 
Line 29 
 #include "rcsprog.h"  #include "rcsprog.h"
   
 #define RCS_CMD_MAXARG  128  #define RCS_CMD_MAXARG  128
 #define RCSPROG_OPTSTRING       "A:a:b::c:e::hik:Lm:Mn:N:qt::TUVx:z:"  #define RCSPROG_OPTSTRING       "A:a:b::c:e::hik:Lm:Mn:N:qt::TUVx::z:"
   
 #define DESC_PROMPT     "enter description, terminated with single '.' "      \  #define DESC_PROMPT     "enter description, terminated with single '.' "      \
                         "or end of file:\nNOTE: This is NOT the log message!" \                          "or end of file:\nNOTE: This is NOT the log message!" \
Line 526 
Line 526 
                         exit(0);                          exit(0);
                         /* NOTREACHED */                          /* NOTREACHED */
                 case 'x':                  case 'x':
                         rcs_suffixes = rcs_optarg;                          /* Use blank extension if none given. */
                           rcs_suffixes = rcs_optarg ? rcs_optarg : "";
                         break;                          break;
                 case 'z':                  case 'z':
                         /*                          /*

Legend:
Removed from v.1.84  
changed lines
  Added in v.1.85