changeset 12622:e8929ded6f43 v8.0.1189

patch 8.0.1189: E172 is not actually useful commit https://github.com/vim/vim/commit/6047e2c722347ae9443c2632c6e061918ccef9c6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 14 15:24:49 2017 +0200 patch 8.0.1189: E172 is not actually useful Problem: E172 is not actually useful, it's only on Unix anyway. Solution: Remove the check and the error.
author Christian Brabandt <cb@256bit.org>
date Sat, 14 Oct 2017 15:30:04 +0200
parents 688af7ac2bc0
children 7d75889569e2
files runtime/doc/message.txt src/ex_docmd.c src/version.c
diffstat 3 files changed, 2 insertions(+), 29 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/doc/message.txt
+++ b/runtime/doc/message.txt
@@ -463,12 +463,6 @@ changed.  To avoid the message reset the
 Something inside Vim went wrong and resulted in a NULL pointer.  If you know
 how to reproduce this problem, please report it. |bugs|
 
-							*E172*  >
-  Only one file name allowed
-
-The ":edit" command only accepts one file name.  When you want to specify
-several files for editing use ":next" |:next|.
-
 						*E41* *E82* *E83* *E342*  >
   Out of memory!
   Out of memory!  (allocating {number} bytes)
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -5085,29 +5085,6 @@ expand_filename(
 	{
 	    if (n == 2)
 	    {
-#ifdef UNIX
-		/*
-		 * Only for Unix we check for more than one file name.
-		 * For other systems spaces are considered to be part
-		 * of the file name.
-		 * Only check here if there is no wildcard, otherwise
-		 * ExpandOne() will check for errors. This allows
-		 * ":e `ls ve*.c`" on Unix.
-		 */
-		if (!has_wildcards)
-		    for (p = eap->arg; *p; ++p)
-		    {
-			/* skip escaped characters */
-			if (p[1] && (*p == '\\' || *p == Ctrl_V))
-			    ++p;
-			else if (VIM_ISWHITE(*p))
-			{
-			    *errormsgp = (char_u *)_("E172: Only one file name allowed");
-			    return FAIL;
-			}
-		    }
-#endif
-
 		/*
 		 * Halve the number of backslashes (this is Vi compatible).
 		 * For Unix and OS/2, when wildcards are expanded, this is
--- a/src/version.c
+++ b/src/version.c
@@ -762,6 +762,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1189,
+/**/
     1188,
 /**/
     1187,