refactor: replace TRUE/FALSE with true/false

This commit is contained in:
Dundar Göc
2021-08-03 11:04:43 +02:00
parent 7d2233fad0
commit c0767bd4f3
7 changed files with 185 additions and 195 deletions

View File

@@ -1620,7 +1620,7 @@ static bool check_prevcol(char_u *linep, int col, int ch, int *prevcol)
if (prevcol) {
*prevcol = col;
}
return (col >= 0 && linep[col] == ch) ? true : false;
return col >= 0 && linep[col] == ch;
}
/*