From: Bram Moolenaar Date: Tue, 9 Oct 2007 08:47:27 +0000 (+0000) Subject: updated for version 7.1-138 X-Git-Tag: v7.1.138 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa8494a13eb1f8b5eb4a417bb03e7bb5ea399c57;p=vim updated for version 7.1-138 --- diff --git a/src/if_perl.xs b/src/if_perl.xs index 2e27fed24..acf7f86d8 100644 --- a/src/if_perl.xs +++ b/src/if_perl.xs @@ -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); } diff --git a/src/version.c b/src/version.c index 26d6b6cf8..ce42fbc4a 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 138, /**/ 137, /**/