We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88b53fd commit 10600dbCopy full SHA for 10600db
2 files changed
src/gui.c
@@ -2753,7 +2753,8 @@ gui_redraw_block(
2753
}
2754
else if (enc_utf8)
2755
{
2756
- if (ScreenLines[off + col1] == 0)
+ // FIXME: how can the first character ever be zero?
2757
+ if (col1 > 0 && ScreenLines[off + col1] == 0)
2758
--col1;
2759
# ifdef FEAT_GUI_GTK
2760
if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
src/version.c
@@ -792,6 +792,8 @@ static char *(features[]) =
792
793
static int included_patches[] =
794
{ /* Add new patch number below this line */
795
+/**/
796
+ 565,
797
/**/
798
564,
799
0 commit comments