• R/O
  • SSH

vim: 提交

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


Commit MetaInfo

修訂d766b2ba2fc6d5b6211cd10d90236dfa8479d617 (tree)
時間2008-07-15 02:51:11
作者vimboss
Commitervimboss

Log Message

updated for version 7.2b-002

Change Summary

差異

diff -r ec5ed41eea2f -r d766b2ba2fc6 src/screen.c
--- a/src/screen.c Mon Jul 14 09:52:40 2008 +0000
+++ b/src/screen.c Mon Jul 14 17:51:11 2008 +0000
@@ -6269,7 +6269,7 @@
62696269 && !gui.in_use
62706270 # endif
62716271 && mb_fix_col(col, row) != col)
6272- screen_puts_len(" ", 1, row, col - 1, 0);
6272+ screen_puts_len((char_u *)" ", 1, row, col - 1, 0);
62736273 #endif
62746274
62756275 off = LineOffset[row] + col;
@@ -7139,9 +7139,9 @@
71397139 * double wide-char clear out the right halve. Only needed in a
71407140 * terminal. */
71417141 if (mb_fix_col(start_col, row) != start_col)
7142- screen_puts_len(" ", 1, row, start_col - 1, 0);
7142+ screen_puts_len((char_u *)" ", 1, row, start_col - 1, 0);
71437143 if (mb_fix_col(end_col, row) != end_col)
7144- screen_puts_len(" ", 1, row, end_col, 0);
7144+ screen_puts_len((char_u *)" ", 1, row, end_col, 0);
71457145 }
71467146 #endif
71477147 /*
diff -r ec5ed41eea2f -r d766b2ba2fc6 src/version.c
--- a/src/version.c Mon Jul 14 09:52:40 2008 +0000
+++ b/src/version.c Mon Jul 14 17:51:11 2008 +0000
@@ -677,6 +677,8 @@
677677 static int included_patches[] =
678678 { /* Add new patch number below this line */
679679 /**/
680+ 2,
681+/**/
680682 1,
681683 /**/
682684 0
Show on old repository browser