Mercurial > emacs
changeset 6945:63ab519f7057
* etags.c (main, print_help): eliminate the -F option.
author | Francesco Potortì <pot@gnu.org> |
---|---|
date | Mon, 18 Apr 1994 17:07:19 +0000 |
parents | daa29eabfc65 |
children | da863741c5b8 |
files | lib-src/etags.c |
diffstat | 1 files changed, 3 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/etags.c Mon Apr 18 10:54:42 1994 +0000 +++ b/lib-src/etags.c Mon Apr 18 17:07:19 1994 +0000 @@ -28,7 +28,7 @@ * Francesco Potorti` (pot@cnuce.cnr.it) is the current maintainer. */ -char pot_etags_version[] = "@(#) pot revision number is 10.31"; +char pot_etags_version[] = "@(#) pot revision number is 10.32"; #ifdef MSDOS #include <fcntl.h> @@ -263,7 +263,6 @@ { "c++", no_argument, NULL, 'C' }, { "cxref", no_argument, NULL, 'x' }, { "defines", no_argument, NULL, 'd' }, - { "forward-search", no_argument, NULL, 'F' }, { "help", no_argument, NULL, 'H' }, { "ignore-indentation", no_argument, NULL, 'S' }, { "include", required_argument, NULL, 'i' }, @@ -325,7 +324,7 @@ if (CTAGS) puts ("-B, --backward-search\n\ Write the search commands for the tag entries using '?', the\n\ - backward-search command."); + backward-search command instead of '/', the forward-search command."); puts ("-C, --c++\n\ Treat files with `.c' and `.h' extensions as C++ code, not C\n\ @@ -340,11 +339,6 @@ Don't create tag entries for C #defines. This makes the tags\n\ file smaller."); - if (CTAGS) - puts ("-F, --forward-search\n\ - Write the search commands for the tag entries using '/', the\n\ - forward-search command."); - if (!CTAGS) puts ("-i FILE, --include=FILE\n\ Include a note in tag file indicating that, when searching for\n\ @@ -429,7 +423,7 @@ for (;;) { int opt; - opt = getopt_long (argc, argv, "aCdDf:o:StTi:BFuvxwVH", longopts, 0); + opt = getopt_long (argc, argv, "aCdDf:o:StTi:BuvxwVH", longopts, 0); if (opt == EOF) break; @@ -487,9 +481,6 @@ case 'B': searchar = '?'; break; - case 'F': - searchar = '/'; - break; case 't': typedefs++; break;