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".
diff --git a/src/vim9script.c b/src/vim9script.c
index feb9b18..63eed4b 100644
--- a/src/vim9script.c
+++ b/src/vim9script.c
@@ -1138,7 +1138,7 @@
&& cctx->ctx_ufunc != NULL
&& (cctx->ctx_ufunc->uf_flags & FC_OBJECT)))
{
- semsg(_(e_cannot_use_reserved_name), name);
+ semsg(_(e_cannot_use_reserved_name_str), name);
return FAIL;
}
return OK;