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

Diff for /src/usr.bin/ctags/ctags.c between version 1.6 and 1.7

version 1.6, 2002/02/16 21:27:45 version 1.7, 2003/04/07 21:13:54
Line 261 
Line 261 
                                  * for C references.  This may be wrong.                                   * for C references.  This may be wrong.
                                  */                                   */
                                 toss_yysec();                                  toss_yysec();
                                 (void)strcpy(lbuf, "%%$");                                  (void)strlcpy(lbuf, "%%$", sizeof lbuf);
                                 pfnote("yylex", lineno);                                  pfnote("yylex", lineno);
                                 rewind(inf);                                  rewind(inf);
                         }                          }
Line 272 
Line 272 
                          * for C references.  This may be wrong.                           * for C references.  This may be wrong.
                          */                           */
                         toss_yysec();                          toss_yysec();
                         (void)strcpy(lbuf, "%%$");                          (void)strlcpy(lbuf, "%%$", sizeof lbuf);
                         pfnote("yyparse", lineno);                          pfnote("yyparse", lineno);
                         y_entries();                          y_entries();
                 }                  }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7