summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-12 17:58:01 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-12 17:58:01 +0200
commit8071cb2c646c9d38dcd4e3ccd377dce07705f031 (patch)
tree1618343aba4c372cbfc3fc9c56e7a7102518c6ec /src/syntax.c
parentbd42b31780794fa751597cf3aa4d1d01889b1494 (diff)
downloadvim-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/syntax.c')
-rw-r--r--src/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 9c17a5875..f01c840da 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -4809,7 +4809,7 @@ syn_cmd_include(exarg_T *eap, int syncing UNUSED)
* Everything that's left, up to the next command, should be the
* filename to include.
*/
- eap->argt |= (XFILE | NOSPC);
+ eap->argt |= (EX_XFILE | EX_NOSPC);
separate_nextcmd(eap);
if (*eap->arg == '<' || *eap->arg == '$' || mch_isFullName(eap->arg))
{