diff options
author | Grzegorz Milka <grzegorzmilka@gmail.com> | 2016-10-23 00:56:15 +0200 |
---|---|---|
committer | Grzegorz Milka <grzegorzmilka@gmail.com> | 2016-10-23 01:17:39 +0200 |
commit | d357a42389752b5270cf590b2f078f836de6c736 (patch) | |
tree | 4d7385d3171a7c63e2ab152a4e781fe49e29fe62 /src/nvim/window.c | |
parent | 9755a2ffd5727c7fc0576e60a21368618978c504 (diff) | |
download | rneovim-d357a42389752b5270cf590b2f078f836de6c736.tar.gz rneovim-d357a42389752b5270cf590b2f078f836de6c736.tar.bz2 rneovim-d357a42389752b5270cf590b2f078f836de6c736.zip |
Fix lint errors.
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index e7be1fb7f8..9c6a2e26a6 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -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; } |