To: vim_dev@googlegroups.com Subject: Patch 8.1.2247 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.1.2247 Problem: "make vimtags" does not work in runtime/doc. Solution: Test existence with "which" instead of "test -x". (Ken Takata) Files: runtime/doc/Makefile *** ../vim-8.1.2246/runtime/doc/Makefile 2019-11-02 22:45:28.727242517 +0100 --- runtime/doc/Makefile 2019-11-03 18:23:41.979755043 +0100 *************** *** 323,329 **** # 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) --clean -eX -u doctags.vim; \ else echo "vim executable $(VIMEXE) not found"; fi # Use "doctags" to generate the tags file. Only works for English! --- 323,330 ---- # Use Vim to generate the tags file. Can only be used when Vim has been # compiled and installed. Supports multiple languages. vimtags: $(DOCS) ! @if which $(VIMEXE) >/dev/null; then \ ! $(VIMEXE) --clean -eX -u doctags.vim >/dev/null; \ else echo "vim executable $(VIMEXE) not found"; fi # Use "doctags" to generate the tags file. Only works for English! *** ../vim-8.1.2246/src/version.c 2019-11-03 16:17:08.987705274 +0100 --- src/version.c 2019-11-03 18:25:25.079405906 +0100 *************** *** 743,744 **** --- 743,746 ---- { /* Add new patch number below this line */ + /**/ + 2247, /**/ -- How To Keep A Healthy Level Of Insanity: 8. Don't use any punctuation marks. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///