mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
refactor: replace TRUE/FALSE with true/false #15425
This commit is contained in:
@@ -2961,7 +2961,7 @@ static void foldlevelIndent(fline_T *flp)
|
||||
linenr_T lnum = flp->lnum + flp->off;
|
||||
|
||||
buf = flp->wp->w_buffer;
|
||||
s = skipwhite(ml_get_buf(buf, lnum, FALSE));
|
||||
s = skipwhite(ml_get_buf(buf, lnum, false));
|
||||
|
||||
/* empty line or lines starting with a character in 'foldignore': level
|
||||
* depends on surrounding lines */
|
||||
@@ -3123,7 +3123,7 @@ static void foldlevelMarker(fline_T *flp)
|
||||
flp->start = 0;
|
||||
flp->lvl_next = flp->lvl;
|
||||
|
||||
s = ml_get_buf(flp->wp->w_buffer, flp->lnum + flp->off, FALSE);
|
||||
s = ml_get_buf(flp->wp->w_buffer, flp->lnum + flp->off, false);
|
||||
while (*s) {
|
||||
if (*s == cstart
|
||||
&& STRNCMP(s + 1, startmarker, foldstartmarkerlen - 1) == 0) {
|
||||
|
Reference in New Issue
Block a user