=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ctags/ctags.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -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 **** ! /* $OpenBSD: ctags.c,v 1.12 2009/10/27 23:59:37 deraadt Exp $ */ /* $NetBSD: ctags.c,v 1.4 1995/09/02 05:57:23 jtc Exp $ */ /* --- 1,4 ---- ! /* $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,61 **** 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 */ --- 55,60 ---- *************** *** 97,103 **** outfile = optarg; break; case 't': ! tflag++; break; case 'u': uflag++; --- 96,102 ---- outfile = optarg; break; case 't': ! /* backwards compatibility */ break; case 'u': uflag++; *************** *** 118,124 **** argc -= optind; if (!argc) { usage: (void)fprintf(stderr, ! "usage: ctags [-aBdFtuvwx] [-f tagsfile] file ...\n"); exit(1); } --- 117,123 ---- argc -= optind; if (!argc) { usage: (void)fprintf(stderr, ! "usage: ctags [-aBdFuvwx] [-f tagsfile] file ...\n"); exit(1); }