Skip to content

Commit 4866957

Browse files
authored
bpo-30860: Add Include/internal/ in "make tags" (#3498)
1 parent 50a72af commit 4866957

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
@@ -1580,15 +1580,15 @@ autoconf:
15801580
# Create a tags file for vi
15811581
tags::
15821582
cd $(srcdir); \
1583-
ctags -w Include/*.h; \
1583+
ctags -w Include/*.h Include/internal/*.h; \
15841584
for i in $(SRCDIRS); do ctags -f tags -w -a $$i/*.[ch]; \
15851585
done; \
15861586
LC_ALL=C sort -o tags tags
15871587

15881588
# Create a tags file for GNU Emacs
15891589
TAGS::
15901590
cd $(srcdir); \
1591-
etags Include/*.h; \
1591+
etags Include/*.h Include/internal/*.h; \
15921592
for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
15931593

15941594
# Sanitation targets -- clean leaves libraries, executables and tags

0 commit comments

Comments
 (0)