diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-22 21:14:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 21:14:17 +0800 |
commit | 9d4a4f49ef74f3c14df63e3d32a20830bfa8c7a9 (patch) | |
tree | fc9230c16f065015fe7efd2f7523a002d2038a06 /src/nvim/eval/executor.c | |
parent | bb7853a62dc32baafa7416b94c97f985287f39e2 (diff) | |
download | rneovim-9d4a4f49ef74f3c14df63e3d32a20830bfa8c7a9.tar.gz rneovim-9d4a4f49ef74f3c14df63e3d32a20830bfa8c7a9.tar.bz2 rneovim-9d4a4f49ef74f3c14df63e3d32a20830bfa8c7a9.zip |
vim-patch:8.1.1933: the eval.c file is too big (#19462)
Problem: The eval.c file is too big.
Solution: Move code related to variables to evalvars.c. (Yegappan
Lakshmanan, closes vim/vim#4868)
https://github.com/vim/vim/commit/0522ba0359c96a8c2a4fc8fca0d3b58e49dda759
Name the new file eval/vars.c instead.
Diffstat (limited to 'src/nvim/eval/executor.c')
-rw-r--r-- | src/nvim/eval/executor.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/eval/executor.c b/src/nvim/eval/executor.c index 3e66150180..b461456a3a 100644 --- a/src/nvim/eval/executor.c +++ b/src/nvim/eval/executor.c @@ -12,8 +12,6 @@ # include "eval/executor.c.generated.h" #endif -static char *e_letwrong = N_("E734: Wrong variable type for %s="); - char *e_listidx = N_("E684: list index out of range: %" PRId64); /// Handle tv1 += tv2, -=, *=, /=, %=, .= |