diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-17 20:36:00 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-17 20:36:00 +0200 |
commit | f5be8cdb77786f93c23237d7d8162feca92067e2 (patch) | |
tree | bf15a34c28e9d52d3e0f56f0627d75d1c87cfcfe /src/proto/ex_docmd.pro | |
parent | 98af99f2d79b310e81003f5e27862a7b522d8372 (diff) | |
download | vim-git-f5be8cdb77786f93c23237d7d8162feca92067e2.tar.gz |
patch 8.2.1227: Vim9: allowing both quoted and # comments is confusingv8.2.1227
Problem: Vim9: allowing both quoted and # comments is confusing.
Solution: Only support # comments in Vim9 script.
Diffstat (limited to 'src/proto/ex_docmd.pro')
-rw-r--r-- | src/proto/ex_docmd.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_docmd.pro b/src/proto/ex_docmd.pro index 85050313b..4881c76af 100644 --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -5,6 +5,7 @@ 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); |