mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.0.0452: some macros are in lower case
Problem: Some macros are in lower case. Solution: Make a few more macros upper case.
This commit is contained in:
@@ -5183,7 +5183,7 @@ ex_language(exarg_T *eap)
|
||||
* Allow abbreviation, but require at least 3 characters to avoid
|
||||
* confusion with a two letter language name "me" or "ct". */
|
||||
p = skiptowhite(eap->arg);
|
||||
if ((*p == NUL || vim_iswhite(*p)) && p - eap->arg >= 3)
|
||||
if ((*p == NUL || VIM_ISWHITE(*p)) && p - eap->arg >= 3)
|
||||
{
|
||||
if (STRNICMP(eap->arg, "messages", p - eap->arg) == 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user