summaryrefslogtreecommitdiffstats
path: root/runtime/tools
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-12-10 21:11:27 +0100
committerBram Moolenaar <Bram@vim.org>2020-12-10 21:11:27 +0100
commit1b884a0053982335f644eec6c71027706bf3c522 (patch)
tree711868d7876566aae13c9b803c5a92e0d3d42329 /runtime/tools
parent70249ee831df357c1a5475473fc84c40d101a67d (diff)
Update runtime files.
Diffstat (limited to 'runtime/tools')
-rw-r--r--runtime/tools/emoji_list.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/tools/emoji_list.vim b/runtime/tools/emoji_list.vim
index 1c8a4a3e42..d361b7ee98 100644
--- a/runtime/tools/emoji_list.vim
+++ b/runtime/tools/emoji_list.vim
@@ -9,9 +9,9 @@ endif
" Use a compiled Vim9 function for speed
def DoIt()
- let lnum = 1
+ var lnum = 1
for c in range(0x100, 0x1ffff)
- let cs = nr2char(c)
+ var cs = nr2char(c)
if charclass(cs) == 3
setline(lnum, '|' .. cs .. '| ' .. strwidth(cs))
lnum += 1