summaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 19:33:50 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 19:33:50 +0000
commitcbadefe25a27ded93548eaa7a325d2a04bf55d7c (patch)
treec0411fb9bfe3e4728d319817f98841df6fc8c6d6 /src/fileio.c
parent1f4a3457a3e55cdacd70ab0d5be587c248fb1ce8 (diff)
patch 8.2.3975: error messages are spread outv8.2.3975
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 1aeb483a94..7c63a1a3bc 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -4155,7 +4155,7 @@ buf_check_timestamp(
if (n)
{
if (!bufref_valid(&bufref))
- emsg(_("E246: FileChangedShell autocommand deleted buffer"));
+ emsg(_(e_filechangedshell_autocommand_deleted_buffer));
#ifdef FEAT_EVAL
s = get_vim_var_str(VV_FCS_CHOICE);
if (STRCMP(s, "reload") == 0 && *reason != 'd')