mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
vim-patch:8.2.4890: inconsistent capitalization in error messages
Problem: Inconsistent capitalization in error messages.
Solution: Make capitalization consistent. (Doug Kearns)
cf030578b2
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -61,8 +61,10 @@
|
||||
|
||||
static const char e_unclosed_expression_sequence[]
|
||||
= N_("E540: Unclosed expression sequence");
|
||||
static const char e_comma_required[]
|
||||
= N_("E536: Comma required");
|
||||
static const char e_unbalanced_groups[]
|
||||
= N_("E542: unbalanced groups");
|
||||
= N_("E542: Unbalanced groups");
|
||||
static const char e_backupext_and_patchmode_are_equal[]
|
||||
= N_("E589: 'backupext' and 'patchmode' are equal");
|
||||
static const char e_showbreak_contains_unprintable_or_wide_character[]
|
||||
@@ -1743,7 +1745,7 @@ const char *did_set_foldmarker(optset_T *args)
|
||||
char *p = vim_strchr(*varp, ',');
|
||||
|
||||
if (p == NULL) {
|
||||
return N_("E536: comma required");
|
||||
return e_comma_required;
|
||||
}
|
||||
|
||||
if (p == *varp || p[1] == NUL) {
|
||||
|
Reference in New Issue
Block a user