diff src/message.c @ 957:3dc6072e0a25 v7.0.083

updated for version 7.0-083
author vimboss
date Sun, 03 Sep 2006 14:35:42 +0000
parents 48775ea99f24
children 144ad7f25f67
line wrap: on
line diff
--- a/src/message.c
+++ b/src/message.c
@@ -1925,7 +1925,8 @@ msg_puts_display(str, maxlen, attr, recu
 	     * If screen is completely filled and 'more' is set then wait
 	     * for a character.
 	     */
-	    if (p_more && --lines_left == 0 && State != HITRETURN
+	    --lines_left;
+	    if (p_more && lines_left == 0 && State != HITRETURN
 					    && !msg_no_more && !exmode_active)
 	    {
 #ifdef FEAT_CON_DIALOG