• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revision6974b167d75eabdf70005f666e3dd0e82e47be4e (tree)
Time2007-08-08 05:00:31
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-056

Change Summary

Incremental Difference

diff -r 2ae2dd2591fa -r 6974b167d75e src/message.c
--- a/src/message.c Mon Aug 06 20:28:43 2007 +0000
+++ b/src/message.c Tue Aug 07 20:00:31 2007 +0000
@@ -1878,7 +1878,7 @@
18781878 /* output postponed text */
18791879 t_puts(&t_col, t_s, s, attr);
18801880
1881- /* When no more prompt an no more room, truncate here */
1881+ /* When no more prompt and no more room, truncate here */
18821882 if (msg_no_more && lines_left == 0)
18831883 break;
18841884
@@ -1927,7 +1927,8 @@
19271927 * If screen is completely filled and 'more' is set then wait
19281928 * for a character.
19291929 */
1930- --lines_left;
1930+ if (lines_left > 0)
1931+ --lines_left;
19311932 if (p_more && lines_left == 0 && State != HITRETURN
19321933 && !msg_no_more && !exmode_active)
19331934 {
@@ -2234,7 +2235,7 @@
22342235 {
22352236 msgchunk_T *mp;
22362237
2237- /* Only show somethign if there is more than one line, otherwise it looks
2238+ /* Only show something if there is more than one line, otherwise it looks
22382239 * weird, typing a command without output results in one line. */
22392240 mp = msg_sb_start(last_msgchunk);
22402241 if (mp == NULL || mp->sb_prev == NULL)
@@ -2622,7 +2623,7 @@
26222623 }
26232624 }
26242625
2625- if (scroll < 0 || (scroll == 0 && mp_last != NULL))
2626+ if (scroll <= 0)
26262627 {
26272628 /* displayed the requested text, more prompt again */
26282629 screen_fill((int)Rows - 1, (int)Rows, 0,
diff -r 2ae2dd2591fa -r 6974b167d75e src/version.c
--- a/src/version.c Mon Aug 06 20:28:43 2007 +0000
+++ b/src/version.c Tue Aug 07 20:00:31 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 56,
671+/**/
670672 55,
671673 /**/
672674 54,
Show on old repository browser