diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-23 19:34:48 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-23 19:34:48 +0200 |
commit | 2e80095501238e0c6b702ac7cdfa2e2b763dba28 (patch) | |
tree | b4768ed6a42285874dff041b2e18d1e22d9bbd98 /src/proto/ex_docmd.pro | |
parent | 6c53fca02301ff871cddc1c74c388e23e53a424a (diff) | |
download | vim-git-2e80095501238e0c6b702ac7cdfa2e2b763dba28.tar.gz |
patch 8.2.1518: Vim9: cannot assign to local optionv8.2.1518
Problem: Vim9: cannot assign to local option.
Solution: Skip over "&l:" and "&g:". (closes #6749)
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 1955ccf6c..3ed152316 100644 --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -10,6 +10,7 @@ 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); int checkforcmd(char_u **pp, char *cmd, int len); +char_u *skip_option_env_lead(char_u *start); char_u *find_ex_command(exarg_T *eap, int *full, void *(*lookup)(char_u *, size_t, cctx_T *), cctx_T *cctx); int modifier_len(char_u *cmd); int cmd_exists(char_u *name); |