mirror of
https://github.com/vim/vim.git
synced 2025-10-07 05:54:16 -04:00
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.
This commit is contained in:
@@ -20899,6 +20899,8 @@ ex_function(eap)
|
|||||||
&& (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
|
&& (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
|
||||||
|| (p[0] == 't' && p[1] == 'c'
|
|| (p[0] == 't' && p[1] == 'c'
|
||||||
&& (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
|
&& (!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'
|
|| (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
|
||||||
&& (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
|
&& (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
|
||||||
|| (p[0] == 'm' && p[1] == 'z'
|
|| (p[0] == 'm' && p[1] == 'z'
|
||||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
350,
|
||||||
/**/
|
/**/
|
||||||
349,
|
349,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user