diff options
author | Matthieu Coudron <teto@users.noreply.github.com> | 2021-01-03 10:10:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 10:10:10 +0100 |
commit | 7a81a0c073704505b420d02420f0c6b64f031983 (patch) | |
tree | 16bb875f081a6250a97c62c1f1de228e0cc21d0e /src/nvim/syntax.c | |
parent | 84d08358b7c4af1d92c7d47edc2c7ae9594ffae4 (diff) | |
parent | 215aa83b2af85939900739a94f0d4d00902a2fed (diff) | |
download | rneovim-7a81a0c073704505b420d02420f0c6b64f031983.tar.gz rneovim-7a81a0c073704505b420d02420f0c6b64f031983.tar.bz2 rneovim-7a81a0c073704505b420d02420f0c6b64f031983.zip |
Merge pull request #13665 from janlazo/vim-8.2.0917
vim-patch:8.1.{1667,1672,1822},8.2.{407,917}
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 4d88df5a3a..f99eca7953 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -4275,7 +4275,7 @@ static void syn_cmd_include(exarg_T *eap, int syncing) * 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 == '$' || path_is_absolute(eap->arg)) { // For an absolute path, "$VIM/..." or "<sfile>.." we ":source" the |