mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.1-138
This commit is contained in:
parent
af92ee8e89
commit
aa8494a13e
@ -445,13 +445,13 @@ msg_split(s, attr)
|
|||||||
char *next;
|
char *next;
|
||||||
char *token = (char *)s;
|
char *token = (char *)s;
|
||||||
|
|
||||||
while ((next = strchr(token, '\n')))
|
while ((next = strchr(token, '\n')) && !got_int)
|
||||||
{
|
{
|
||||||
*next++ = '\0'; /* replace \n with \0 */
|
*next++ = '\0'; /* replace \n with \0 */
|
||||||
msg_attr((char_u *)token, attr);
|
msg_attr((char_u *)token, attr);
|
||||||
token = next;
|
token = next;
|
||||||
}
|
}
|
||||||
if (*token)
|
if (*token && !got_int)
|
||||||
msg_attr((char_u *)token, attr);
|
msg_attr((char_u *)token, attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
138,
|
||||||
/**/
|
/**/
|
||||||
137,
|
137,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user