summaryrefslogtreecommitdiff
path: root/src/usercmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-06 21:41:11 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-06 21:41:11 +0000
commit11de43d2d476c449587f1f0712924890ab677708 (patch)
treee33dfc2f5ff7296126fe75a8f02180b896375c47 /src/usercmd.c
parent2ef01d929d094c9063a259a74e23cf61be74b9b6 (diff)
downloadvim-git-11de43d2d476c449587f1f0712924890ab677708.tar.gz
patch 8.2.4022: two error messages in the wrong filev8.2.4022
Problem: Two error messages in the wrong file. Solution: Use the error message from errors.h.
Diffstat (limited to 'src/usercmd.c')
-rw-r--r--src/usercmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usercmd.c b/src/usercmd.c
index d4ed0a46a..135752d11 100644
--- a/src/usercmd.c
+++ b/src/usercmd.c
@@ -618,7 +618,7 @@ parse_addr_type_arg(
for (i = 0; err[i] != NUL && !VIM_ISWHITE(err[i]); i++)
;
err[i] = NUL;
- semsg(_("E180: Invalid address type value: %s"), err);
+ semsg(_(e_invalid_address_type_value_str), err);
return FAIL;
}