diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-11 23:04:54 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-11 23:04:54 -0400 |
commit | e15c34fbc29b4d98566f80a0d65436081a32e5b5 (patch) | |
tree | 08d50983aa75fb9960bd3f4cc5c79af6bc5d5254 | |
parent | 38c52c63accab5ea2a76bebaa5ccd5a089fa17ab (diff) | |
download | rneovim-e15c34fbc29b4d98566f80a0d65436081a32e5b5.tar.gz rneovim-e15c34fbc29b4d98566f80a0d65436081a32e5b5.tar.bz2 rneovim-e15c34fbc29b4d98566f80a0d65436081a32e5b5.zip |
lint
-rw-r--r-- | src/nvim/normal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 65cc7d1db8..217bf4f876 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -6496,7 +6496,7 @@ void may_start_select(int c) */ static void n_start_visual_mode(int c) { - /* Check for redraw before changing the state. */ + // Check for redraw before changing the state. conceal_check_cursor_line(); VIsual_mode = c; @@ -6514,7 +6514,7 @@ static void n_start_visual_mode(int c) foldAdjustVisual(); setmouse(); - /* Check for redraw after changing the state. */ + // Check for redraw after changing the state. conceal_check_cursor_line(); if (p_smd && msg_silent == 0) |