diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-03-17 00:21:48 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-03-17 00:21:48 -0400 |
commit | 5a9d3be54cce2f21d5f76a4bc5ebef08927b1988 (patch) | |
tree | 054bd7a88bba554f557440ee23fe2e79b276950b /src/nvim/buffer.c | |
parent | 77a7ca458bc3e6e140149d1f2bf97593e2d502cd (diff) | |
download | rneovim-5a9d3be54cce2f21d5f76a4bc5ebef08927b1988.tar.gz rneovim-5a9d3be54cce2f21d5f76a4bc5ebef08927b1988.tar.bz2 rneovim-5a9d3be54cce2f21d5f76a4bc5ebef08927b1988.zip |
test: minor changes
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 4661a191a9..8d3769cb54 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -141,8 +141,7 @@ open_buffer ( /* mark cursor position as being invalid */ curwin->w_valid = 0; - if (curbuf->b_ffname != NULL - ) { + if (curbuf->b_ffname != NULL) { int old_msg_silent = msg_silent; if (shortmess(SHM_FILEINFO)) { msg_silent = 1; @@ -154,8 +153,9 @@ open_buffer ( msg_silent = old_msg_silent; // Help buffer is filtered. - if (curbuf->b_help) + if (curbuf->b_help) { fix_help_buffer(); + } } else if (read_stdin) { int save_bin = curbuf->b_p_bin; linenr_T line_count; |