# HG changeset patch # User Bram Moolenaar # Date 1544188505 -3600 # Node ID f17110dae9de9fec4163d21662aa1abbc9b3b352 # Parent 87237010fcf9d162f0cff0eefb064b85546c58b2 patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI commit https://github.com/vim/vim/commit/9a8534673acd98d7398c967fe4348df63e689dab Author: Bram Moolenaar Date: Fri Dec 7 14:10:37 2018 +0100 patch 8.1.0568: error message for NUL byte in ScreenLines breaks Travis CI Problem: Error message for NUL byte in ScreenLines breaks Travis CI. Solution: Use a normal message fornow. diff --git a/src/gui.c b/src/gui.c --- 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 --- 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,