mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 04:58:33 +00:00
refactor: replace TRUE/FALSE with true/false #15425
This commit is contained in:
@@ -1837,7 +1837,7 @@ void truncate_line(int fixpos)
|
||||
|
||||
/// Delete "nlines" lines at the cursor.
|
||||
/// Saves the lines for undo first if "undo" is true.
|
||||
void del_lines(long nlines, int undo)
|
||||
void del_lines(long nlines, bool undo)
|
||||
{
|
||||
long n;
|
||||
linenr_T first = curwin->w_cursor.lnum;
|
||||
|
Reference in New Issue
Block a user