Skip to content

Commit 7f936da

Browse files
committed
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.
1 parent 5fe4915 commit 7f936da

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/eval.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20899,6 +20899,8 @@ ex_function(eap)
2089920899
&& (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
2090020900
|| (p[0] == 't' && p[1] == 'c'
2090120901
&& (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20902+
|| (p[0] == 'l' && p[1] == 'u' && p[2] == 'a'
20903+
&& !ASCII_ISALPHA(p[3]))
2090220904
|| (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
2090320905
&& (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
2090420906
|| (p[0] == 'm' && p[1] == 'z'

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,8 @@ static char *(features[]) =
714714

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
350,
717719
/**/
718720
349,
719721
/**/

0 commit comments

Comments
 (0)