commit | 1b884a0053982335f644eec6c71027706bf3c522 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Dec 10 21:11:27 2020 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Dec 10 21:11:27 2020 +0100 |
tree | 711868d7876566aae13c9b803c5a92e0d3d42329 | |
parent | 70249ee831df357c1a5475473fc84c40d101a67d [diff] |
Update runtime files.
diff --git a/runtime/tools/emoji_list.vim b/runtime/tools/emoji_list.vim index 1c8a4a3..d361b7e 100644 --- a/runtime/tools/emoji_list.vim +++ b/runtime/tools/emoji_list.vim
@@ -9,9 +9,9 @@ " 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