diff options
author | James McCoy <jamessan@jamessan.com> | 2019-01-03 07:01:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-03 07:01:19 -0500 |
commit | 103e02191237ab697fa694c6905173daa7023865 (patch) | |
tree | 8c5e83ddf56e471bed4c89bf2f96015a5f2da381 /src/nvim/ex_cmds2.c | |
parent | 0afb5fa70aa6b5bc1b007aca5309a5bafd63d868 (diff) | |
parent | 111e46582cfc24e490fe42457c6b56aac8306ad2 (diff) | |
download | rneovim-103e02191237ab697fa694c6905173daa7023865.tar.gz rneovim-103e02191237ab697fa694c6905173daa7023865.tar.bz2 rneovim-103e02191237ab697fa694c6905173daa7023865.zip |
Merge pull request #9447 from janlazo/vim-8.1.0651
vim-patch:8.1.{651,653}
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index 6b0d8801fd..484c911a8b 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -1772,7 +1772,7 @@ void ex_args(exarg_T *eap) } } - if (!ends_excmd(*eap->arg)) { + if (*eap->arg != NUL) { // ":args file ..": define new argument list, handle like ":next" // Also for ":argslocal file .." and ":argsglobal file ..". ex_next(eap); |