summaryrefslogtreecommitdiffstats
path: root/src/memline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-05 16:09:06 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-05 16:09:06 +0000
commit677658ae49de31fe2e5b1fa6d93fdfab85a4362e (patch)
treef5f0bbdda081ce1dad3bcaf7f4e6cf3281774cac /src/memline.c
parent8e7d9db32b53ca2b1cb7570d2042860bcd1e943f (diff)
patch 8.2.4008: error messages are spread outv8.2.4008
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/memline.c')
-rw-r--r--src/memline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memline.c b/src/memline.c
index b8ed03ea48..07b0f5737c 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -4415,7 +4415,7 @@ resolve_symlink(char_u *fname, char_u *buf)
// Limit symlink depth to 100, catch recursive loops.
if (++depth == 100)
{
- semsg(_("E773: Symlink loop for \"%s\""), fname);
+ semsg(_(e_symlink_loop_for_str), fname);
return FAIL;
}