• R/O
  • SSH

vim: 提交

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


Commit MetaInfo

修訂54a6b47d473e64d7ae5212f00b8b125c721d2c41 (tree)
時間2007-11-24 23:44:58
作者vimboss
Commitervimboss

Log Message

updated for version 7.1-160

Change Summary

差異

diff -r 215d6b2a1816 -r 54a6b47d473e src/message.c
--- a/src/message.c Tue Nov 20 17:04:29 2007 +0000
+++ b/src/message.c Sat Nov 24 14:44:58 2007 +0000
@@ -2850,6 +2850,15 @@
28502850 }
28512851 else if (State == HITRETURN || State == SETWSIZE)
28522852 {
2853+ if (msg_row == Rows - 1)
2854+ {
2855+ /* Avoid drawing the "hit-enter" prompt below the previous one,
2856+ * overwrite it. Esp. useful when regaining focus and a
2857+ * FocusGained autocmd exists but didn't draw anything. */
2858+ msg_didout = FALSE;
2859+ msg_col = 0;
2860+ msg_clr_eos();
2861+ }
28532862 hit_return_msg();
28542863 msg_row = Rows - 1;
28552864 }
diff -r 215d6b2a1816 -r 54a6b47d473e src/version.c
--- a/src/version.c Tue Nov 20 17:04:29 2007 +0000
+++ b/src/version.c Sat Nov 24 14:44:58 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 160,
671+/**/
670672 159,
671673 /**/
672674 158,
Show on old repository browser