summaryrefslogtreecommitdiffstats
path: root/src/gui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-05-24 21:02:24 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-24 21:02:24 +0100
commit097c5370ea8abab17ceb0f3bcd74f57b1655c7f7 (patch)
tree031d9928ff74a50cb4f7eb25270e13561a2d8d27 /src/gui.c
parenta8490a4952c320f234ae4528d4a1e812a27f3a0a (diff)
patch 9.0.1576: users may not know what to do with an internal errorv9.0.1576
Problem: Users may not know what to do with an internal error. Solution: Add a translated message with instructions.
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/gui.c b/src/gui.c
index e9f951da79..1f546b2a75 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -142,7 +142,7 @@ gui_start(char_u *arg UNUSED)
settmode(TMODE_RAW); // restart RAW mode
set_title_defaults(); // set 'title' and 'icon' again
#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
- if (msg)
+ if (msg != NULL)
emsg(msg);
#endif
}
@@ -2786,14 +2786,8 @@ gui_redraw_block(
if (col1 > 0)
--col1;
else
- {
// FIXME: how can the first character ever be zero?
- // 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((char *)IObuff);
- }
+ siemsg("NUL in ScreenLines in row %ld", (long)gui.row);
}
#ifdef FEAT_GUI_GTK
if (col2 + 1 < Columns && ScreenLines[off + col2 + 1] == 0)
@@ -4400,9 +4394,9 @@ gui_do_scrollbar(
}
/*
- * Scroll a window according to the values set in the globals current_scrollbar
- * and scrollbar_value. Return TRUE if the cursor in the current window moved
- * or FALSE otherwise.
+ * Scroll a window according to the values set in the globals
+ * "current_scrollbar" and "scrollbar_value".
+ * Return TRUE if the cursor in the current window moved or FALSE otherwise.
*/
int
gui_do_scroll(void)