Mercurial > vim
annotate runtime/doc/doctags.vim @ 25060:54c0cb81e6a7 v8.2.3067
patch 8.2.3067: building fails with Athena
Commit: https://github.com/vim/vim/commit/1d1ce613cdc74721499660b1d8911de164e2862d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 27 19:02:52 2021 +0200
patch 8.2.3067: building fails with Athena
Problem: Building fails with Athena. (Elimar Riesebieter)
Solution: Adjust #ifdefs and add the 'drop_file' feature.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 27 Jun 2021 19:15:03 +0200 |
parents | 27ff44268da5 |
children |
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! |