diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-04 20:26:21 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-04 20:26:21 +0200 |
commit | 48ac671fe5cb5a7c2d5263d2f122e5e903022e30 (patch) | |
tree | de853f82e2d451d2067f562fcc78b074c97cbc08 /src/ex_getln.c | |
parent | 4e038571aa91521e110187a256b5d16bff8b5820 (diff) | |
download | vim-git-48ac671fe5cb5a7c2d5263d2f122e5e903022e30.tar.gz |
patch 8.1.1632: build with EXITFREE but without +arabic failsv8.1.1632
Problem: Build with EXITFREE but without +arabic fails.
Solution: Rename the function and adjust #ifdefs. (closes #4613)
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index 303786cc5..c9c63acb4 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -3174,7 +3174,7 @@ static char_u *arshape_buf = NULL; # if defined(EXITFREE) || defined(PROTO) void -free_cmdline_buf(void) +free_arshape_buf(void) { vim_free(arshape_buf); } |