1
0
forked from aniani/vim

updated for version 7.1-053

This commit is contained in:
Bram Moolenaar 2007-08-05 17:20:43 +00:00
parent 0963cd95f5
commit 57b7fe808f
2 changed files with 3 additions and 1 deletions

View File

@ -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:

View File

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