Skip to content

Commit 9c4bfa6

Browse files
committed
"make tags": remove -t option of ctags
The option was kept for backward compatibility, but it was completly removed recently. Patch written by Stéphane Wirtel.
1 parent 798d7fb commit 9c4bfa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.pre.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1563,8 +1563,8 @@ autoconf:
15631563
# Create a tags file for vi
15641564
tags::
15651565
cd $(srcdir); \
1566-
ctags -w -t Include/*.h; \
1567-
for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1566+
ctags -w Include/*.h; \
1567+
for i in $(SRCDIRS); do ctags -w -a $$i/*.[ch]; \
15681568
done; \
15691569
sort -o tags tags
15701570

0 commit comments

Comments
 (0)