0
0
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:
Bram Moolenaar 2007-10-09 08:47:27 +00:00
parent af92ee8e89
commit aa8494a13e
2 changed files with 4 additions and 2 deletions

View File

@ -445,13 +445,13 @@ msg_split(s, attr)
char *next;
char *token = (char *)s;
while ((next = strchr(token, '\n')))
while ((next = strchr(token, '\n')) && !got_int)
{
*next++ = '\0'; /* replace \n with \0 */
msg_attr((char_u *)token, attr);
token = next;
}
if (*token)
if (*token && !got_int)
msg_attr((char_u *)token, attr);
}

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
138,
/**/
137,
/**/