]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.350 v7.3.350
authorBram Moolenaar <Bram@vim.org>
Wed, 26 Oct 2011 11:19:27 +0000 (13:19 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 26 Oct 2011 11:19:27 +0000 (13:19 +0200)
Problem:    Block of code after ":lua << EOF" may not work. (Paul Isambert)
Solution:   Recognize the ":lua" command, skip to EOF.

src/eval.c
src/version.c

index efbcfaf51f7fef4655a3260fa31c1202577f8f20..5c26248dd704cd4afd485913599172b60b1a48c9 100644 (file)
@@ -20899,6 +20899,8 @@ ex_function(eap)
                                    && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
                        || (p[0] == 't' && p[1] == 'c'
                                    && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
+                       || (p[0] == 'l' && p[1] == 'u' && p[2] == 'a'
+                                   && !ASCII_ISALPHA(p[3]))
                        || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
                                    && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
                        || (p[0] == 'm' && p[1] == 'z'
index 4656587028b0f20ac4b147710e2cb8391cef1fb3..4ce9a6d9cef46bb8ed8a8064d880a90a9f49dc54 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    350,
 /**/
     349,
 /**/