summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-07-18 15:14:43 +0000
committerBram Moolenaar <Bram@vim.org>2008-07-18 15:14:43 +0000
commita1aed62928a213956a60d225f3f2a6209d8249c2 (patch)
tree43fe0b143dd9887181d23fe32035ff7eb69e07f2
parent0ab2c5adfb5cae2335819db2bae4d8a368f67121 (diff)
updated for version 7.2b-009v7.2b.009
-rw-r--r--src/screen.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c
index 66d50a542a..95a89144c3 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -7140,7 +7140,7 @@ screen_fill(start_row, end_row, start_col, end_col, c1, c2, attr)
* terminal. */
if (mb_fix_col(start_col, row) != start_col)
screen_puts_len((char_u *)" ", 1, row, start_col - 1, 0);
- if (mb_fix_col(end_col, row) != end_col)
+ if (end_col < screen_Columns && mb_fix_col(end_col, row) != end_col)
screen_puts_len((char_u *)" ", 1, row, end_col, 0);
}
#endif
diff --git a/src/version.c b/src/version.c
index 93b7957840..d51c8777b1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 9,
+/**/
8,
/**/
7,