diff options
Diffstat (limited to 'src/vim9compile.c')
-rw-r--r-- | src/vim9compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vim9compile.c b/src/vim9compile.c index 080a53c69..debead418 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -888,7 +888,7 @@ compile_nested_function(exarg_T *eap, cctx_T *cctx, garray_T *lines_to_free) return NULL; if (!ASCII_ISUPPER(is_global ? name_start[2] : name_start[0])) { - semsg(_(e_function_name_must_start_with_capital_or_s_str), name_start); + semsg(_(e_function_name_must_start_with_capital_str), name_start); return NULL; } |