0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -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:
Bram Moolenaar
2022-01-05 16:09:06 +00:00
parent 8e7d9db32b
commit 677658ae49
28 changed files with 187 additions and 76 deletions

View File

@@ -2664,7 +2664,7 @@ curbuf_locked(void)
{
if (curbuf_lock > 0)
{
emsg(_("E788: Not allowed to edit another buffer now"));
emsg(_(e_not_allowed_to_edit_another_buffer_now));
return TRUE;
}
return allbuf_locked();