From 50bfb3278e78daa413fe66fc07d5c5694fbc1d77 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 26 Oct 2011 13:19:27 +0200 Subject: [PATCH] updated for version 7.3.350 Problem: Block of code after ":lua << EOF" may not work. (Paul Isambert) Solution: Recognize the ":lua" command, skip to EOF. --- src/eval.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/eval.c b/src/eval.c index efbcfaf51..5c26248dd 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 465658702..4ce9a6d9c 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 350, /**/ 349, /**/ -- 2.40.0