summaryrefslogtreecommitdiffstats
path: root/src/window.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/window.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/window.c')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
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;
}