Created
September 15, 2016 11:31
-
-
Save k-takata/190f4be423d759ef8ac900eadf6350c2 to your computer and use it in GitHub Desktop.
Vim 8.0.3: spaces after a function argument cause error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/userfunc.c b/src/userfunc.c | |
--- a/src/userfunc.c | |
+++ b/src/userfunc.c | |
@@ -147,6 +147,7 @@ get_function_args( | |
*p = c; | |
} | |
+ p = skipwhite(p); | |
if (*p == ',') | |
++p; | |
else |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment