diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-09-29 06:52:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 06:52:02 +0800 |
commit | 7ec20a4082f2e62e0ae90d464e0d62aa4ffdacf4 (patch) | |
tree | 48dacc0d7567c94211d775425565484ee20bfe51 /src/nvim/strings.c | |
parent | 1117d29b2008bfe3a7bfdfac6b7856040b377161 (diff) | |
download | rneovim-7ec20a4082f2e62e0ae90d464e0d62aa4ffdacf4.tar.gz rneovim-7ec20a4082f2e62e0ae90d464e0d62aa4ffdacf4.tar.bz2 rneovim-7ec20a4082f2e62e0ae90d464e0d62aa4ffdacf4.zip |
vim-patch:9.0.1950: Vim9: error codes spread out (#25405)
Problem: Vim9: error codes spread out
Solution: group them together and reserve 100
more for future use
Reserve 100 error codes for future enhancements to the Vim9 class
support
closes: vim/vim#13207
https://github.com/vim/vim/commit/413f83990f15d5d59d27ab741670f527a7a3feb8
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r-- | src/nvim/strings.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index 661dae7592..7e4d07bd00 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -33,19 +33,19 @@ #include "nvim/vim.h" static const char e_cannot_mix_positional_and_non_positional_str[] - = N_("E1400: Cannot mix positional and non-positional arguments: %s"); + = N_("E1500: Cannot mix positional and non-positional arguments: %s"); static const char e_fmt_arg_nr_unused_str[] - = N_("E1401: format argument %d unused in $-style format: %s"); + = N_("E1501: format argument %d unused in $-style format: %s"); static const char e_positional_num_field_spec_reused_str_str[] - = N_("E1402: Positional argument %d used as field width reused as different type: %s/%s"); + = N_("E1502: Positional argument %d used as field width reused as different type: %s/%s"); static const char e_positional_nr_out_of_bounds_str[] - = N_("E1403: Positional argument %d out of bounds: %s"); + = N_("E1503: Positional argument %d out of bounds: %s"); static const char e_positional_arg_num_type_inconsistent_str_str[] - = N_("E1404: Positional argument %d type used inconsistently: %s/%s"); + = N_("E1504: Positional argument %d type used inconsistently: %s/%s"); static const char e_invalid_format_specifier_str[] - = N_("E1405: Invalid format specifier: %s"); + = N_("E1505: Invalid format specifier: %s"); static const char e_aptypes_is_null_nr_str[] - = "E1408: Internal error: ap_types or ap_types[idx] is NULL: %d: %s"; + = "E1520: Internal error: ap_types or ap_types[idx] is NULL: %d: %s"; static const char typename_unknown[] = N_("unknown"); static const char typename_int[] = N_("int"); |