refactor: convert TRUE/FALSE to true/false (#15660)

This commit is contained in:
dundargoc
2021-09-18 00:24:39 +02:00
committed by GitHub
parent ede5695eb1
commit 1f49268c46
8 changed files with 49 additions and 56 deletions

View File

@@ -6431,9 +6431,9 @@ static void ex_colorscheme(exarg_T *eap)
char_u *expr = vim_strsave((char_u *)"g:colors_name");
char_u *p = NULL;
++emsg_off;
p = eval_to_string(expr, NULL, FALSE);
--emsg_off;
emsg_off++;
p = eval_to_string(expr, NULL, false);
emsg_off--;
xfree(expr);
if (p != NULL) {