summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui.c9
-rw-r--r--src/version.c2
2 files changed, 9 insertions, 2 deletions
diff --git a/src/gui.c b/src/gui.c
index 9291366e1..2f3bafc97 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -2758,9 +2758,14 @@ gui_redraw_block(
if (col1 > 0)
--col1;
else
+ {
// FIXME: how can the first character ever be zero?
- IEMSGN("INTERNAL ERROR: NUL in ScreenLines in row %ld",
- gui.row);
+ // Make this IEMSGN when it no longer breaks Travis CI.
+ vim_snprintf((char *)IObuff, IOSIZE,
+ "INTERNAL ERROR: NUL in ScreenLines in row %ld",
+ (long)gui.row);
+ msg(IObuff);
+ }
}
# ifdef FEAT_GUI_GTK
if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
diff --git a/src/version.c b/src/version.c
index c4d9a8f15..eeb7cb068 100644
--- a/src/version.c
+++ b/src/version.c
@@ -793,6 +793,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 568,
+/**/
567,
/**/
566,