[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.12 and 1.13

version 1.12, 2009/10/27 23:59:37 version 1.13, 2010/11/03 19:39:38
Line 55 
Line 55 
   
 int     lineno;                 /* line number of current line */  int     lineno;                 /* line number of current line */
 int     dflag;                  /* -d: non-macro defines */  int     dflag;                  /* -d: non-macro defines */
 int     tflag;                  /* -t: create tags for typedefs */  
 int     vflag;                  /* -v: vgrind style index output */  int     vflag;                  /* -v: vgrind style index output */
 int     wflag;                  /* -w: suppress warnings */  int     wflag;                  /* -w: suppress warnings */
 int     xflag;                  /* -x: cxref style output */  int     xflag;                  /* -x: cxref style output */
Line 97 
Line 96 
                         outfile = optarg;                          outfile = optarg;
                         break;                          break;
                 case 't':                  case 't':
                         tflag++;                          /* backwards compatibility */
                         break;                          break;
                 case 'u':                  case 'u':
                         uflag++;                          uflag++;
Line 118 
Line 117 
         argc -= optind;          argc -= optind;
         if (!argc) {          if (!argc) {
 usage:          (void)fprintf(stderr,  usage:          (void)fprintf(stderr,
                         "usage: ctags [-aBdFtuvwx] [-f tagsfile] file ...\n");                          "usage: ctags [-aBdFuvwx] [-f tagsfile] file ...\n");
                 exit(1);                  exit(1);
         }          }
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13