diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-17 20:47:51 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-17 20:47:51 +0200 |
commit | 6e36b1c18e636549f3424546f2c20101604a2d33 (patch) | |
tree | 9672c2dba4278a78309ebd10e643d3744d3c9076 /src/proto | |
parent | 203ec7760d255d9f92950c8779ddfc587d7896e0 (diff) | |
download | vim-git-6e36b1c18e636549f3424546f2c20101604a2d33.tar.gz |
patch 8.2.1229: build error without the eval featurev8.2.1229
Problem: Build error without the eval feature.
Solution: Declare starts_with_colon. Make function local.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ex_docmd.pro | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/proto/ex_docmd.pro b/src/proto/ex_docmd.pro index 4881c76af..85050313b 100644 --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -5,7 +5,6 @@ int do_cmdline(char_u *cmdline, char_u *(*fgetline)(int, void *, int, int), void int getline_equal(char_u *(*fgetline)(int, void *, int, int), void *cookie, char_u *(*func)(int, void *, int, int)); void *getline_cookie(char_u *(*fgetline)(int, void *, int, int), void *cookie); char_u *getline_peek(char_u *(*fgetline)(int, void *, int, int), void *cookie); -int comment_start(char_u *p, int starts_with_colon); int parse_command_modifiers(exarg_T *eap, char **errormsg, int skip_only); void undo_cmdmod(exarg_T *eap, int save_msg_scroll); int parse_cmd_address(exarg_T *eap, char **errormsg, int silent); |