mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.1-053
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user