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

Diff for /src/usr.bin/cvs/rcs.h between version 1.82 and 1.83

version 1.82, 2008/01/10 09:39:32 version 1.83, 2008/01/10 09:54:04
Line 78 
Line 78 
 #define RCS_KW_HEADER   (RCS_KW_ID | RCS_KW_FULLPATH)  #define RCS_KW_HEADER   (RCS_KW_ID | RCS_KW_FULLPATH)
   
 /* RCS keyword expansion modes (kflags) */  /* RCS keyword expansion modes (kflags) */
 #define RCS_KWEXP_NONE  0x00  #define RCS_KWEXP_NONE  0x01    /* do not expand keywords */
 #define RCS_KWEXP_NAME  0x01    /* include keyword name */  #define RCS_KWEXP_NAME  0x02    /* include keyword name */
 #define RCS_KWEXP_VAL   0x02    /* include keyword value */  #define RCS_KWEXP_VAL   0x04    /* include keyword value */
 #define RCS_KWEXP_LKR   0x04    /* include name of locker */  #define RCS_KWEXP_LKR   0x08    /* include name of locker */
 #define RCS_KWEXP_OLD   0x08    /* generate old keyword string */  #define RCS_KWEXP_OLD   0x10    /* generate old keyword string */
 #define RCS_KWEXP_ERR   0x10    /* mode has an error */  #define RCS_KWEXP_ERR   0x20    /* mode has an error */
   
 #define RCS_KWEXP_DEFAULT       (RCS_KWEXP_NAME | RCS_KWEXP_VAL)  #define RCS_KWEXP_DEFAULT       (RCS_KWEXP_NAME | RCS_KWEXP_VAL)
 #define RCS_KWEXP_KVL           (RCS_KWEXP_NAME | RCS_KWEXP_VAL | RCS_KWEXP_LKR)  #define RCS_KWEXP_KVL           (RCS_KWEXP_NAME | RCS_KWEXP_VAL | RCS_KWEXP_LKR)

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83