mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.4008: error messages are spread out
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
This commit is contained in:
@@ -2682,7 +2682,7 @@ ex_diffgetput(exarg_T *eap)
|
||||
if (idx_other == DB_COUNT)
|
||||
{
|
||||
if (found_not_ma)
|
||||
emsg(_("E793: No other buffer in diff mode is modifiable"));
|
||||
emsg(_(e_no_other_buffer_in_diff_mode_is_modifiable));
|
||||
else
|
||||
emsg(_(e_no_other_buffer_in_diff_mode));
|
||||
return;
|
||||
@@ -2769,7 +2769,7 @@ ex_diffgetput(exarg_T *eap)
|
||||
change_warning(0);
|
||||
if (diff_buf_idx(curbuf) != idx_to)
|
||||
{
|
||||
emsg(_("E787: Buffer changed unexpectedly"));
|
||||
emsg(_(e_buffer_changed_unexpectedly));
|
||||
goto theend;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user