Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3ad2882c
Commit
3ad2882c
authored
Apr 18, 1994
by
Francesco Potortì
Browse files
* etags.c (main, print_help): eliminate the -F option.
parent
1875d994
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
12 deletions
+3
-12
lib-src/etags.c
lib-src/etags.c
+3
-12
No files found.
lib-src/etags.c
View file @
3ad2882c
...
...
@@ -28,7 +28,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
* Francesco Potorti` (pot@cnuce.cnr.it) is the current maintainer.
*/
char
pot_etags_version
[]
=
"@(#) pot revision number is 10.3
1
"
;
char
pot_etags_version
[]
=
"@(#) pot revision number is 10.3
2
"
;
#ifdef MSDOS
#include <fcntl.h>
...
...
@@ -263,7 +263,6 @@ struct option longopts[] = {
{
"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 @@ names from stdin.\n\n", progname);
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 @@ names from stdin.\n\n", progname);
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 @@ main (argc, argv)
for
(;;)
{
int
opt
;
opt
=
getopt_long
(
argc
,
argv
,
"aCdDf:o:StTi:B
F
uvxwVH"
,
longopts
,
0
);
opt
=
getopt_long
(
argc
,
argv
,
"aCdDf:o:StTi:BuvxwVH"
,
longopts
,
0
);
if
(
opt
==
EOF
)
break
;
...
...
@@ -487,9 +481,6 @@ main (argc, argv)
case
'B'
:
searchar
=
'?'
;
break
;
case
'F'
:
searchar
=
'/'
;
break
;
case
't'
:
typedefs
++
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment