=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ctags/ctags.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- src/usr.bin/ctags/ctags.c 2009/10/27 23:59:37 1.12 +++ src/usr.bin/ctags/ctags.c 2010/11/03 19:39:38 1.13 @@ -1,4 +1,4 @@ -/* $OpenBSD: ctags.c,v 1.12 2009/10/27 23:59:37 deraadt Exp $ */ +/* $OpenBSD: ctags.c,v 1.13 2010/11/03 19:39:38 millert Exp $ */ /* $NetBSD: ctags.c,v 1.4 1995/09/02 05:57:23 jtc Exp $ */ /* @@ -55,7 +55,6 @@ int lineno; /* line number of current line */ int dflag; /* -d: non-macro defines */ -int tflag; /* -t: create tags for typedefs */ int vflag; /* -v: vgrind style index output */ int wflag; /* -w: suppress warnings */ int xflag; /* -x: cxref style output */ @@ -97,7 +96,7 @@ outfile = optarg; break; case 't': - tflag++; + /* backwards compatibility */ break; case 'u': uflag++; @@ -118,7 +117,7 @@ argc -= optind; if (!argc) { usage: (void)fprintf(stderr, - "usage: ctags [-aBdFtuvwx] [-f tagsfile] file ...\n"); + "usage: ctags [-aBdFuvwx] [-f tagsfile] file ...\n"); exit(1); }