mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
Fix lint errors.
This commit is contained in:
@@ -2052,7 +2052,7 @@ void win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
|
||||
|
||||
if (win->w_buffer != NULL) {
|
||||
// Close the link to the buffer.
|
||||
close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, FALSE);
|
||||
close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, false);
|
||||
}
|
||||
|
||||
/* Careful: Autocommands may have closed the tab page or made it the
|
||||
@@ -3242,7 +3242,7 @@ void goto_tabpage(int n)
|
||||
int i;
|
||||
|
||||
if (text_locked()) {
|
||||
/* Not allowed when editing the command line. */
|
||||
// Not allowed when editing the command line.
|
||||
text_locked_msg();
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user