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

Diff for /src/usr.bin/ctags/print.c between version 1.2 and 1.3

version 1.2, 1996/06/26 05:32:30 version 1.3, 1997/11/04 08:03:05
Line 66 
Line 66 
         saveftell = ftell(inf);          saveftell = ftell(inf);
         (void)fseek(inf, lineftell, SEEK_SET);          (void)fseek(inf, lineftell, SEEK_SET);
         if (xflag)          if (xflag)
                 for (cp = lbuf; GETC(!=, '\n'); *cp++ = c)                  for (cp = lbuf; GETC(!=, EOF) && c != '\n'; *cp++ = c)
                         continue;                          continue;
         /*          /*
          * do all processing here, so we don't step through the           * do all processing here, so we don't step through the

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3