mirror of
https://github.com/vim/vim.git
synced 2025-11-15 23:14:06 -05:00
patch 8.2.4003: error messages are spread out
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
This commit is contained in:
@@ -4051,7 +4051,7 @@ channel_send(
|
||||
if (!channel->ch_error && fun != NULL)
|
||||
{
|
||||
ch_error(channel, "%s(): write while not connected", fun);
|
||||
semsg(_("E630: %s(): write while not connected"), fun);
|
||||
semsg(_(e_str_write_while_not_connected), fun);
|
||||
}
|
||||
channel->ch_error = TRUE;
|
||||
return FAIL;
|
||||
@@ -4197,7 +4197,7 @@ channel_send(
|
||||
if (!channel->ch_error && fun != NULL)
|
||||
{
|
||||
ch_error(channel, "%s(): write failed", fun);
|
||||
semsg(_("E631: %s(): write failed"), fun);
|
||||
semsg(_(e_str_write_failed), fun);
|
||||
}
|
||||
channel->ch_error = TRUE;
|
||||
return FAIL;
|
||||
|
||||
Reference in New Issue
Block a user