diff options
author | Jurica Bradaric <jurica.bradaric@avl.com> | 2016-01-15 09:04:46 +0100 |
---|---|---|
committer | Jurica Bradaric <jurica.bradaric@avl.com> | 2016-01-19 08:25:54 +0100 |
commit | 1c91dc8a5ee83173474b31b8a0073a0368944914 (patch) | |
tree | 36306f48f4ed211ddc2b2c68a4c79a9cea6f3ef8 /src | |
parent | 21afabb9e8cf335fb60c027bbb064de07d1bf586 (diff) | |
download | rneovim-1c91dc8a5ee83173474b31b8a0073a0368944914.tar.gz rneovim-1c91dc8a5ee83173474b31b8a0073a0368944914.tar.bz2 rneovim-1c91dc8a5ee83173474b31b8a0073a0368944914.zip |
screen: Fix linting errors
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/screen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 700612900a..ed02c28272 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -3470,10 +3470,10 @@ win_line ( && lnum == wp->w_cursor.lnum && (colnr_T)vcol == wp->w_virtcol))) && lcs_eol_one > 0) { - /* Display a '$' after the line or highlight an extra - * character if the line break is included. */ - /* For a diff line the highlighting continues after the - * "$". */ + // Display a '$' after the line or highlight an extra + // character if the line break is included. + // For a diff line the highlighting continues after the + // "$". if (diff_hlf == (hlf_T)0 && line_attr == 0) { /* In virtualedit, visual selections may extend * beyond end of line. */ |