summaryrefslogtreecommitdiffstats
path: root/runtime/doc/tagsrch.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-02-04 22:53:05 +0100
committerBram Moolenaar <Bram@vim.org>2020-02-04 22:53:05 +0100
commit560979ed4f0216f902a2c247e937f00a27dcb198 (patch)
tree777c300b97dc91f20ac21decb06a48bd18102cc9 /runtime/doc/tagsrch.txt
parent80147dda4f5a25c9533bc88583c87dbbb0a0f1f1 (diff)
Update runtime files.
Diffstat (limited to 'runtime/doc/tagsrch.txt')
-rw-r--r--runtime/doc/tagsrch.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/tagsrch.txt b/runtime/doc/tagsrch.txt
index f57b9c5297..ed406e8dc3 100644
--- a/runtime/doc/tagsrch.txt
+++ b/runtime/doc/tagsrch.txt
@@ -1,4 +1,4 @@
-*tagsrch.txt* For Vim version 8.2. Last change: 2019 Dec 27
+*tagsrch.txt* For Vim version 8.2. Last change: 2020 Jan 30
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -903,8 +903,8 @@ The following is a hypothetical example of a function used for 'tagfunc'. It
uses the output of |taglist()| to generate the result: a list of tags in the
inverse order of file names.
>
- function! TagFunc(pattern, flags, info)
- function! CompareFilenames(item1, item2)
+ function TagFunc(pattern, flags, info)
+ function CompareFilenames(item1, item2)
let f1 = a:item1['filename']
let f2 = a:item2['filename']
return f1 >=# f2 ?