diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-02 22:45:31 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-02 22:45:31 +0100 |
commit | 70def98a957620cc325d1ab6ee35f13187598693 (patch) | |
tree | 92c57cae40e5e0d9139ca790ddecfcbb55fc02dd /runtime | |
parent | 024dbd229fa7991b7bf7ef4d0888b43ab03783f7 (diff) | |
download | vim-git-70def98a957620cc325d1ab6ee35f13187598693.tar.gz |
patch 8.1.2242: creating docs tags uses user preferencesv8.1.2242
Problem: Creating docs tags uses user preferences. (Tony Mechelynck)
Solution: Add "--clean".
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile index 57aec4e3c..0cbe02026 100644 --- a/runtime/doc/Makefile +++ b/runtime/doc/Makefile @@ -323,7 +323,7 @@ all: tags vim.man evim.man vimdiff.man vimtutor.man xxd.man $(CONVERTED) # Use Vim to generate the tags file. Can only be used when Vim has been # compiled and installed. Supports multiple languages. vimtags: $(DOCS) - @if test -x $(VIMEXE); then $(VIMEXE) -eX -u doctags.vim; \ + @if test -x $(VIMEXE); then $(VIMEXE) --clean -eX -u doctags.vim; \ else echo "vim executable $(VIMEXE) not found"; fi # Use "doctags" to generate the tags file. Only works for English! |