Skip to content

Commit 9ef2a30

Browse files
committed
patch 8.0.1614: "make tags" doesn't include libvterm
Problem: "make tags" doesn't include libvterm. Solution: Add the libvterm sources to the tags command.
1 parent a2150ac commit 9ef2a30

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1396,6 +1396,8 @@ TERM_DEPS = \
13961396
libvterm/src/utf8.h \
13971397
libvterm/src/vterm_internal.h
13981398

1399+
TERM_SRC = libvterm/src/*.c
1400+
13991401
### Command to create dependencies based on #include "..."
14001402
### prototype headers are ignored due to -DPROTO, system
14011403
### headers #include <...> are ignored if we use the -MM option, as
@@ -2040,7 +2042,7 @@ notags:
20402042
# Motif and Athena GUI
20412043
# You can ignore error messages for missing files.
20422044
tags TAGS: notags
2043-
$(TAGPRG) $(TAGS_SRC) $(TAGS_INCL)
2045+
$(TAGPRG) $(TAGS_SRC) $(TAGS_INCL) $(TERM_SRC) $(TERM_DEPS)
20442046

20452047
# Make a highlight file for types. Requires Exuberant ctags and awk
20462048
types: types.vim

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,8 @@ static char *(features[]) =
766766

767767
static int included_patches[] =
768768
{ /* Add new patch number below this line */
769+
/**/
770+
1614,
769771
/**/
770772
1613,
771773
/**/

0 commit comments

Comments
 (0)