From a9fa8c58fbcc5cf8850f6963c509de272f4d4bbf Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 2 Jan 2023 18:10:04 +0000 Subject: patch 9.0.1133: error message names do not match the items Problem: Error message names do not match the items. Solution: Add "_str" when the text contains "%s". --- src/evalvars.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/evalvars.c') diff --git a/src/evalvars.c b/src/evalvars.c index 389a9e4d18..e52f10ba3e 100644 --- a/src/evalvars.c +++ b/src/evalvars.c @@ -1111,7 +1111,8 @@ ex_let(exarg_T *eap) if (vim9script && (flags & ASSIGN_NO_DECL) == 0) { // +=, /=, etc. require an existing variable - semsg(_(e_cannot_use_operator_on_new_variable), eap->arg); + semsg(_(e_cannot_use_operator_on_new_variable_str), + eap->arg); } else if (vim_strchr((char_u *)"+-*/%.", *expr) != NULL) { -- cgit v1.2.3