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:
@@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user