summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2011-10-26 13:19:27 +0200
committerBram Moolenaar <bram@vim.org>2011-10-26 13:19:27 +0200
commit92c896c34c964b9c42ca6616e1dd9c4b515a1c5a (patch)
tree5dc9dd664c0492760082d7d71ba761b0dc93b90f /src
parent22b22078c20a285d5ba352f749c674e98149ae36 (diff)
downloadvim-92c896c34c964b9c42ca6616e1dd9c4b515a1c5a.tar.gz
updated for version 7.3.350v7.3.350v7-3-350
Problem: Block of code after ":lua << EOF" may not work. (Paul Isambert) Solution: Recognize the ":lua" command, skip to EOF.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index efbcfaf5..5c26248d 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -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'
diff --git a/src/version.c b/src/version.c
index 46565870..4ce9a6d9 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 350,
+/**/
349,
/**/
348,