mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 07:16:09 +00:00
refactor: replace TRUE/FALSE with true/false
This commit is contained in:
@@ -137,7 +137,7 @@ search_regcomp(
|
||||
int magic;
|
||||
int i;
|
||||
|
||||
rc_did_emsg = FALSE;
|
||||
rc_did_emsg = false;
|
||||
magic = p_magic;
|
||||
|
||||
/*
|
||||
@@ -153,7 +153,7 @@ search_regcomp(
|
||||
EMSG(_(e_nopresub));
|
||||
else
|
||||
EMSG(_(e_noprevre));
|
||||
rc_did_emsg = TRUE;
|
||||
rc_did_emsg = true;
|
||||
return FAIL;
|
||||
}
|
||||
pat = spats[i].pat;
|
||||
@@ -3110,7 +3110,7 @@ current_word(
|
||||
inc_cursor();
|
||||
if (VIsual_mode == 'V') {
|
||||
VIsual_mode = 'v';
|
||||
redraw_cmdline = TRUE; /* show mode later */
|
||||
redraw_cmdline = true; // show mode later
|
||||
}
|
||||
} else
|
||||
oap->inclusive = inclusive;
|
||||
@@ -4105,7 +4105,7 @@ bool current_quote(
|
||||
}
|
||||
if (VIsual_mode == 'V') {
|
||||
VIsual_mode = 'v';
|
||||
redraw_cmdline = TRUE; /* show mode later */
|
||||
redraw_cmdline = true; // show mode later
|
||||
}
|
||||
} else {
|
||||
/* Set inclusive and other oap's flags. */
|
||||
|
Reference in New Issue
Block a user