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

Diff for /src/usr.bin/cvs/rcs.c between version 1.128 and 1.129

version 1.128, 2006/02/09 08:08:56 version 1.129, 2006/02/13 11:02:58
Line 475 
Line 475 
                 fprintf(fp, " strict;");                  fprintf(fp, " strict;");
         fputc('\n', fp);          fputc('\n', fp);
   
           fputs("comment\t@", fp);
         if (rfp->rf_comment != NULL) {          if (rfp->rf_comment != NULL) {
                 fputs("comment\t@", fp);  
                 rcs_strprint((const u_char *)rfp->rf_comment,                  rcs_strprint((const u_char *)rfp->rf_comment,
                     strlen(rfp->rf_comment), fp);                      strlen(rfp->rf_comment), fp);
                 fputs("@;\n", fp);                  fputs("@;\n", fp);
         }          } else
                   fputs("# @;\n", fp);
   
         if (rfp->rf_expand != NULL) {          if (rfp->rf_expand != NULL) {
                 fputs("expand @", fp);                  fputs("expand @", fp);

Legend:
Removed from v.1.128  
changed lines
  Added in v.1.129