diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-22 21:44:28 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-07-22 22:38:05 +0800 |
commit | 271739c8305ac7eb41a3467e508bdeb5c03f0427 (patch) | |
tree | 3a00f1287764d9b1484e197df3600860deb2b197 /scripts/vim-patch.sh | |
parent | 790f8b0e167c7015f1486d4bcab0083f42017ac3 (diff) | |
download | rneovim-271739c8305ac7eb41a3467e508bdeb5c03f0427.tar.gz rneovim-271739c8305ac7eb41a3467e508bdeb5c03f0427.tar.bz2 rneovim-271739c8305ac7eb41a3467e508bdeb5c03f0427.zip |
refactor: move f_getbufvar() and f_setbufvar() to eval/vars.c
Vim moved them there in patch 8.1.1943.
Diffstat (limited to 'scripts/vim-patch.sh')
-rwxr-xr-x | scripts/vim-patch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index f1bc07c249..3825d9f0ea 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -230,7 +230,7 @@ preprocess_patch() { "$file" > "$file".tmp && mv "$file".tmp "$file" # Rename evalvars.c to eval/vars.c - LC_ALL=C sed -e 's/\( [ab]\/src\/nvim\)\/evalfunc\.c/\1\/eval\/vars\.c/g' \ + LC_ALL=C sed -e 's/\( [ab]\/src\/nvim\)\/evalvars\.c/\1\/eval\/vars\.c/g' \ "$file" > "$file".tmp && mv "$file".tmp "$file" # Rename userfunc.c to eval/userfunc.c |