From 097c5370ea8abab17ceb0f3bcd74f57b1655c7f7 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 24 May 2023 21:02:24 +0100 Subject: patch 9.0.1576: users may not know what to do with an internal error Problem: Users may not know what to do with an internal error. Solution: Add a translated message with instructions. --- src/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/window.c') diff --git a/src/window.c b/src/window.c index 926a3f348f..cc5f7df972 100644 --- a/src/window.c +++ b/src/window.c @@ -1948,7 +1948,7 @@ win_move_after(win_T *win1, win_T *win2) { if (win1->w_frame->fr_parent != win2->w_frame->fr_parent) { - iemsg("INTERNAL: trying to move a window into another frame"); + iemsg("Trying to move a window into another frame"); return; } -- cgit v1.2.3