aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/screen.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-12-27 23:26:51 -0500
committerJames McCoy <jamessan@jamessan.com>2016-12-28 14:57:40 -0500
commit46235a30edc4ee09fdbd4f489865982bafde247d (patch)
treecc6a21715c4bb605fd51b16574774802057d1678 /src/nvim/screen.c
parent552cc4d0b3c9ebfd7ca30bfac71fab4ee5d9188e (diff)
downloadrneovim-46235a30edc4ee09fdbd4f489865982bafde247d.tar.gz
rneovim-46235a30edc4ee09fdbd4f489865982bafde247d.tar.bz2
rneovim-46235a30edc4ee09fdbd4f489865982bafde247d.zip
lint
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r--src/nvim/screen.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c
index 72549f1f21..b737c23851 100644
--- a/src/nvim/screen.c
+++ b/src/nvim/screen.c
@@ -1630,8 +1630,7 @@ static void win_draw_end(win_T *wp, int c1, int c2, int row, int endrow, hlf_T h
n = nn;
}
- if (signcolumn_on(wp))
- {
+ if (signcolumn_on(wp)) {
int nn = n + 2;
/* draw the sign column after the fold column */
@@ -1743,7 +1742,7 @@ static void fold_line(win_T *wp, long fold_count, foldinfo_T *foldinfo, linenr_T
* text */
RL_MEMSET(col, hl_attr(HLF_FL), wp->w_width - col);
- /* If signs are being displayed, add two spaces. */
+ // If signs are being displayed, add two spaces.
if (signcolumn_on(wp)) {
len = wp->w_width - col;
if (len > 0) {