commit | 677658ae49de31fe2e5b1fa6d93fdfab85a4362e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jan 05 16:09:06 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jan 05 16:09:06 2022 +0000 |
tree | f5f0bbdda081ce1dad3bcaf7f4e6cf3281774cac | |
parent | 8e7d9db32b53ca2b1cb7570d2042860bcd1e943f [diff] [blame] |
patch 8.2.4008: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
diff --git a/src/memline.c b/src/memline.c index b8ed03e..07b0f57 100644 --- a/src/memline.c +++ b/src/memline.c
@@ -4415,7 +4415,7 @@ // 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; }