annotate runtime/doc/doctags.vim @ 19746:1da2fb80b512 v8.2.0429

patch 8.2.0429: no warning when test checks for option that never exists Commit: https://github.com/vim/vim/commit/c5a8fdc42dbd304598b2d73db754c7b97665b182 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 22 20:13:39 2020 +0100 patch 8.2.0429: no warning when test checks for option that never exists Problem: No warning when test checks for option that never exists. Solution: In tests check that the option can exist.
author Bram Moolenaar <Bram@vim.org>
date Sun, 22 Mar 2020 20:15:04 +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!