Skip to content

Commit 6ed473d

Browse files
committed
rollup merge of #19923: pnkfelix/fix-make-tags.emacs
Fix `make TAGS.emacs`. @nikomatsakis has been complaining to me about this. (I had not noticed since I drive `ctags` with a separate script.) (Suitable for a rollup build.)
2 parents 984eb13 + 8f4e9c2 commit 6ed473d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/ctags.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ CTAGS_LOCATIONS=$(patsubst ${CFG_SRC_DIR}src/llvm,, \
2727
$(patsubst ${CFG_SRC_DIR}src/rt/msvc,, \
2828
$(patsubst ${CFG_SRC_DIR}src/rt/vg,, \
2929
$(wildcard ${CFG_SRC_DIR}src/*) $(wildcard ${CFG_SRC_DIR}src/rt/*) \
30-
)))))))))
30+
))))))))
3131
CTAGS_OPTS=--options="${CFG_SRC_DIR}src/etc/ctags.rust" --languages=-javascript --recurse ${CTAGS_LOCATIONS}
3232
# We could use `--languages=Rust`, but there is value in producing tags for the
3333
# C++ parts of the code base too (at the time of writing, those are .h and .cpp

0 commit comments

Comments
 (0)