• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revision826f00fef9e338c7afebef68658716bb0aab62f4 (tree)
Time2007-09-06 19:54:51
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-096

Change Summary

Incremental Difference

diff -r 99a9e42e5688 -r 826f00fef9e3 src/message.c
--- a/src/message.c Wed Sep 05 19:47:23 2007 +0000
+++ b/src/message.c Thu Sep 06 10:54:51 2007 +0000
@@ -944,6 +944,7 @@
944944 c = K_IGNORE;
945945 }
946946 #endif
947+
947948 /*
948949 * Allow scrolling back in the messages.
949950 * Also accept scroll-down commands when messages fill the screen,
@@ -1840,6 +1841,7 @@
18401841 char_u *sb_str = str;
18411842 int sb_col = msg_col;
18421843 int wrap;
1844+ int did_last_char;
18431845
18441846 did_wait_return = FALSE;
18451847 while ((maxlen < 0 || (int)(s - str) < maxlen) && *s != NUL)
@@ -1909,7 +1911,10 @@
19091911 else
19101912 #endif
19111913 msg_screen_putchar(*s++, attr);
1914+ did_last_char = TRUE;
19121915 }
1916+ else
1917+ did_last_char = FALSE;
19131918
19141919 if (p_more)
19151920 /* store text for scrolling back */
@@ -1944,11 +1949,7 @@
19441949
19451950 /* When we displayed a char in last column need to check if there
19461951 * is still more. */
1947- if (*s >= ' '
1948-#ifdef FEAT_RIGHTLEFT
1949- && !cmdmsg_rl
1950-#endif
1951- )
1952+ if (did_last_char)
19521953 continue;
19531954 }
19541955
diff -r 99a9e42e5688 -r 826f00fef9e3 src/version.c
--- a/src/version.c Wed Sep 05 19:47:23 2007 +0000
+++ b/src/version.c Thu Sep 06 10:54:51 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 96,
671+/**/
670672 95,
671673 /**/
672674 94,
Show on old repository browser