diff options
author | ichizok <gclient.gaap@gmail.com> | 2022-01-31 12:27:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-31 12:27:18 +0000 |
commit | 672776dbe8427876ef4bfce84520712df87b6eb1 (patch) | |
tree | 96bd350e3654192104bfa9480fa2056a2e94c40f /src/evalfunc.c | |
parent | 48a604845e33399893d6bf293e71bcd2a412800d (diff) | |
download | vim-git-672776dbe8427876ef4bfce84520712df87b6eb1.tar.gz |
patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twicev8.2.4270
Problem: Generating nv_cmdidxs.h requires building Vim twice.
Solution: Move the table into a separate file and use a separate executable
to extract the command characters. (Ozaki Kiichi, closes #9669)
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r-- | src/evalfunc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c index 2de7016a8..500ae284b 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -1735,8 +1735,6 @@ static funcentry_T global_functions[] = ret_string, f_inputsecret}, {"insert", 2, 3, FEARG_1, arg23_insert, ret_first_arg, f_insert}, - {"internal_get_nv_cmdchar", 1, 1, FEARG_1, arg1_number, - ret_number, f_internal_get_nv_cmdchar}, {"interrupt", 0, 0, 0, NULL, ret_void, f_interrupt}, {"invert", 1, 1, FEARG_1, arg1_number, |