forked from aniani/vim
updated for version 7.1-053
This commit is contained in:
parent
0963cd95f5
commit
57b7fe808f
@ -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:
|
||||
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
53,
|
||||
/**/
|
||||
52,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user