summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-28 19:06:47 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-28 19:06:47 +0100
commit2ac372ccee1af6f9fa105bf2648d5e4efa554236 (patch)
tree944b1dde1b0a884054c13cb9951b51d1ca492110 /src
parent54948183d210f5117271bb5710752da24054fade (diff)
patch 8.1.0651: :args \"foo works like :args without argumentv8.1.0651
Problem: :args \"foo works like :args without argument. Solution: Fix check for empty argument. (closes #3728)
Diffstat (limited to 'src')
-rw-r--r--src/ex_cmds2.c2
-rw-r--r--src/testdir/test_arglist.vim6
-rw-r--r--src/version.c2
3 files changed, 9 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index c3f26b64c5..74d56427cd 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -2738,7 +2738,7 @@ ex_args(exarg_T *eap)
alist_new();
}
- if (!ends_excmd(*eap->arg))
+ if (*eap->arg != NUL)
{
/*
* ":args file ..": define new argument list, handle like ":next"
diff --git a/src/testdir/test_arglist.vim b/src/testdir/test_arglist.vim
index cb1117eede..72e727ff3f 100644
--- a/src/testdir/test_arglist.vim
+++ b/src/testdir/test_arglist.vim
@@ -217,6 +217,12 @@ func Test_list_arguments()
%argdelete
endfunc
+func Test_args_with_quote()
+ args \"foobar
+ call assert_equal('"foobar', argv(0))
+ %argdelete
+endfunc
+
" Test for 0argadd and 0argedit
" Ported from the test_argument_0count.in test script
func Test_zero_argadd()
diff --git a/src/version.c b/src/version.c
index cbb0e70eae..3082c0d12e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -800,6 +800,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 651,
+/**/
650,
/**/
649,