summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-08-05 17:20:43 +0000
committerBram Moolenaar <Bram@vim.org>2007-08-05 17:20:43 +0000
commit57b7fe808f7fde1fe3a63f960d7980e37ac169f3 (patch)
treea096c5cc9a5cca4a5fb13f53ffc2a292c5c1e8db /src
parent0963cd95f5940ebe10fdcdd176d94a3e92008595 (diff)
updated for version 7.1-053v7.1.053
Diffstat (limited to 'src')
-rw-r--r--src/message.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
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
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 53,
+/**/
52,
/**/
51,