]> granicus.if.org Git - vim/commitdiff
updated for version 7.1-226 v7.1.226
authorBram Moolenaar <Bram@vim.org>
Sun, 13 Jan 2008 16:12:10 +0000 (16:12 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 13 Jan 2008 16:12:10 +0000 (16:12 +0000)
src/ex_docmd.c
src/version.c

index d7ef7d5cb97da22f4218f873e5919999ecd05d35..6d036ff47df5f549393ef4d339489cdbc84f5a7e 100644 (file)
@@ -3338,12 +3338,13 @@ set_one_cmd_context(xp, buff)
                }
                in_quote = !in_quote;
            }
+           /* An argument can contain just about everything, except
+            * characters that end the command and white space. */
+           else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
 #ifdef SPACE_IN_FILENAME
-           else if (!vim_isfilec_or_wc(c)
-                                        && (!(ea.argt & NOSPC) || usefilter))
-#else
-           else if (!vim_isfilec_or_wc(c))
+                                        && (!(ea.argt & NOSPC) || usefilter)
 #endif
+                   ))
            {
                while (*p != NUL)
                {
index 34003b96669332a8fa9342642171aebd95711037..7ba507f75d183e9386b2b2ceac85f6457ab1e2c2 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    226,
 /**/
     225,
 /**/