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:
@@ -6139,7 +6139,7 @@ mch_expand_wildcards(
|
||||
STRCAT(command, pat[0] + 1); /* exclude first backtick */
|
||||
p = command + STRLEN(command) - 1;
|
||||
*p-- = ')'; /* remove last backtick */
|
||||
while (p > command && vim_iswhite(*p))
|
||||
while (p > command && VIM_ISWHITE(*p))
|
||||
--p;
|
||||
if (*p == '&') /* remove trailing '&' */
|
||||
{
|
||||
|
Reference in New Issue
Block a user