diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2019-01-25 16:31:59 +0100 |
---|---|---|
committer | Marco Hinz <mh.codebro@gmail.com> | 2019-01-26 14:45:48 +0100 |
commit | 2418aa3a4ac8f560373b940dbe0443fc79ab65ad (patch) | |
tree | 51fb57d9c67fecf9a93fdc8a5504f3770f42f8d3 /src/nvim/buffer.c | |
parent | df5534f576818b2e29f554e55c7ffc5c24ce732e (diff) | |
download | rneovim-2418aa3a4ac8f560373b940dbe0443fc79ab65ad.tar.gz rneovim-2418aa3a4ac8f560373b940dbe0443fc79ab65ad.tar.bz2 rneovim-2418aa3a4ac8f560373b940dbe0443fc79ab65ad.zip |
linter: fix issues
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 96d0eaf815..048fde07e7 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -3677,9 +3677,9 @@ int build_stl_str_hl( // In list mode virtcol needs to be recomputed colnr_T virtcol = wp->w_virtcol; if (wp->w_p_list && wp->w_p_lcs_chars.tab1 == NUL) { - wp->w_p_list = FALSE; + wp->w_p_list = false; getvcol(wp, &wp->w_cursor, NULL, &virtcol, NULL); - wp->w_p_list = TRUE; + wp->w_p_list = true; } ++virtcol; // Don't display %V if it's the same as %c. |