aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorKillTheMule <KillTheMule@users.noreply.github.com>2018-01-26 20:25:53 +0100
committerKillTheMule <KillTheMule@users.noreply.github.com>2018-05-23 22:07:27 +0200
commit37b8e95fd69ba4991454f79802bfe1bccf7c827a (patch)
treeb75965914390d1a13478ec244eee898bc49b6214 /src/nvim/buffer.c
parent8bcc01195968b84d1a74ecb82598bdf538004404 (diff)
downloadrneovim-37b8e95fd69ba4991454f79802bfe1bccf7c827a.tar.gz
rneovim-37b8e95fd69ba4991454f79802bfe1bccf7c827a.tar.bz2
rneovim-37b8e95fd69ba4991454f79802bfe1bccf7c827a.zip
Lint
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 124e479686..e7ff25ce6b 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -1738,9 +1738,9 @@ buf_T * buflist_new(char_u *ffname, char_u *sfname, linenr_T lnum, int flags)
if (flags & BLN_DUMMY)
buf->b_flags |= BF_DUMMY;
buf_clear_file(buf);
- clrallmarks(buf); /* clear marks */
- fmarks_check_names(buf); /* check file marks for this file */
- buf->b_p_bl = (flags & BLN_LISTED) ? TRUE : FALSE; /* init 'buflisted' */
+ clrallmarks(buf); // clear marks
+ fmarks_check_names(buf); // check file marks for this file
+ buf->b_p_bl = (flags & BLN_LISTED) ? true : false; // init 'buflisted'
kv_destroy(buf->liveupdate_channels);
kv_init(buf->liveupdate_channels);
if (!(flags & BLN_DUMMY)) {