From: Bram Moolenaar Date: Sun, 5 Aug 2007 17:20:43 +0000 (+0000) Subject: updated for version 7.1-053 X-Git-Tag: v7.1.053 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=57b7fe808f7fde1fe3a63f960d7980e37ac169f3;p=thirdparty%2Fvim.git updated for version 7.1-053 --- diff --git a/src/message.c b/src/message.c index 9c57491635..609922a2f2 100644 --- a/src/message.c +++ b/src/message.c @@ -1842,7 +1842,7 @@ msg_puts_display(str, maxlen, attr, recurse) int wrap; did_wait_return = FALSE; - while (*s != NUL && (maxlen < 0 || (int)(s - str) < maxlen)) + while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL) { /* * We are at the end of the screen line when: diff --git a/src/version.c b/src/version.c index 96b11d0618..7663fc67f0 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 */ +/**/ + 53, /**/ 52, /**/