annotate runtime/doc/doctags.vim @ 19736:4174c4da6ff7 v8.2.0424

patch 8.2.0424: checking for wrong return value Commit: https://github.com/vim/vim/commit/97acfc781bdb7fa2838dc6e0e7f9952ea61bb2fd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 22 13:44:28 2020 +0100 patch 8.2.0424: checking for wrong return value Problem: Checking for wrong return value. (Tom) Solution: Invert the check and fix the test.
author Bram Moolenaar <Bram@vim.org>
date Sun, 22 Mar 2020 13:45:08 +0100
parents 27ff44268da5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18487
5b95ccb82c0a patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " This script makes a tags file for help text.
5b95ccb82c0a patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 "
5b95ccb82c0a patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Usage: vim -eX -u doctags.vim
5b95ccb82c0a patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4
19161
27ff44268da5 patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents: 18487
diff changeset
5 try
27ff44268da5 patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents: 18487
diff changeset
6 helptags ++t .
27ff44268da5 patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents: 18487
diff changeset
7 echo 'help tags updated'
27ff44268da5 patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents: 18487
diff changeset
8 catch
27ff44268da5 patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents: 18487
diff changeset
9 echo v:exception
27ff44268da5 patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents: 18487
diff changeset
10 echo 'help tags failed update'
27ff44268da5 patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents: 18487
diff changeset
11 endtry
27ff44268da5 patch 8.2.0140: CI does not test building doc tags
Bram Moolenaar <Bram@vim.org>
parents: 18487
diff changeset
12 echo ''
18487
5b95ccb82c0a patch 8.1.2238: error in docs tags goes unnoticed
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 qa!