summaryrefslogtreecommitdiffstats
path: root/src/channel.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/channel.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/channel.c')
-rw-r--r--src/channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channel.c b/src/channel.c
index 97eb5db99c..5d45ac6d14 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -1757,7 +1757,7 @@ invoke_callback(channel_T *channel, callback_T *callback, typval_T *argv)
typval_T rettv;
if (safe_to_invoke_callback == 0)
- iemsg("INTERNAL: Invoking callback when it is not safe");
+ iemsg("Invoking callback when it is not safe");
argv[0].v_type = VAR_CHANNEL;
argv[0].vval.v_channel = channel;
@@ -2400,7 +2400,7 @@ channel_remove_block_id(chanpart_T *chanpart, int id)
}
return;
}
- siemsg("INTERNAL: channel_remove_block_id: cannot find id %d", id);
+ siemsg("channel_remove_block_id(): cannot find id %d", id);
}
/*