0
0
mirror of https://github.com/vim/vim.git synced 2025-10-17 07:44:28 -04:00

updated for version 7.1-329

This commit is contained in:
Bram Moolenaar
2008-06-21 12:14:30 +00:00
parent bf820723f5
commit 88f3d3a267
2 changed files with 6 additions and 1 deletions

View File

@@ -4863,6 +4863,7 @@ comp_char_differs(off_from, off_to)
* - the (first byte of the) character is different * - the (first byte of the) character is different
* - the attributes are different * - the attributes are different
* - the character is multi-byte and the next byte is different * - the character is multi-byte and the next byte is different
* - the character is two cells wide and the second cell differs.
*/ */
static int static int
char_needs_redraw(off_from, off_to, cols) char_needs_redraw(off_from, off_to, cols)
@@ -4884,7 +4885,9 @@ char_needs_redraw(off_from, off_to, cols)
|| (enc_utf8 || (enc_utf8
&& (ScreenLinesUC[off_from] != ScreenLinesUC[off_to] && (ScreenLinesUC[off_from] != ScreenLinesUC[off_to]
|| (ScreenLinesUC[off_from] != 0 || (ScreenLinesUC[off_from] != 0
&& comp_char_differs(off_from, off_to)))) && comp_char_differs(off_from, off_to))
|| (cols > 1 && ScreenLines[off_from + 1]
!= ScreenLines[off_to + 1])))
#endif #endif
)) ))
return TRUE; return TRUE;

View File

@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
329,
/**/ /**/
328, 328,
/**/ /**/