aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-05-08 15:18:08 +0200
committerGitHub <noreply@github.com>2017-05-08 15:18:08 +0200
commit4c3d7b29ec7b46fcd1defbe84c03e3e3b2a9e9f5 (patch)
treec94189cb4d08bd692710b9b05f1bd73625c2294c /src/nvim/buffer.c
parentaace622ca5ffe4deb72989452dc60877304d71aa (diff)
parent7c1a5d1d407e2e93e079a27b91f4c20b4fee1a0d (diff)
downloadrneovim-4c3d7b29ec7b46fcd1defbe84c03e3e3b2a9e9f5.tar.gz
rneovim-4c3d7b29ec7b46fcd1defbe84c03e3e3b2a9e9f5.tar.bz2
rneovim-4c3d7b29ec7b46fcd1defbe84c03e3e3b2a9e9f5.zip
Merge #6595 from justinmk/term-refresh-on-exit
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 7def8c1684..fe80f7f62e 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -449,7 +449,7 @@ void close_buffer(win_T *win, buf_T *buf, int action, int abort_if_last)
if (buf->terminal) {
terminal_close(buf->terminal, NULL);
- }
+ }
/* Always remove the buffer when there is no file name. */
if (buf->b_ffname == NULL)