diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-12 17:58:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-12 17:58:01 +0200 |
commit | 8071cb2c646c9d38dcd4e3ccd377dce07705f031 (patch) | |
tree | 1618343aba4c372cbfc3fc9c56e7a7102518c6ec /src/evalfunc.c | |
parent | bd42b31780794fa751597cf3aa4d1d01889b1494 (diff) | |
download | vim-git-8071cb2c646c9d38dcd4e3ccd377dce07705f031.tar.gz |
patch 8.1.1667: flags for Ex commands may clash with other symbolsv8.1.1667
Problem: Flags for Ex commands may clash with other symbols.
Solution: Prepend with EX_.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r-- | src/evalfunc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c index b6998993f..4ee0d5d9a 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -3547,7 +3547,7 @@ f_expandcmd(typval_T *argvars, typval_T *rettv) memset(&eap, 0, sizeof(eap)); eap.cmd = cmdstr; eap.arg = cmdstr; - eap.argt |= NOSPC; + eap.argt |= EX_NOSPC; eap.usefilter = FALSE; eap.nextcmd = NULL; eap.cmdidx = CMD_USER; |