diff options
author | Johan Klokkhammer Helsing <johanhelsing@gmail.com> | 2015-11-04 02:44:45 +0100 |
---|---|---|
committer | Johan Klokkhammer Helsing <johanhelsing@gmail.com> | 2015-12-13 13:06:48 +0100 |
commit | ad34a376eb164852d2983341a9137a1e06a24bb9 (patch) | |
tree | 594a08f870c79f2ea49a5b0bcfed9cb533d4be2e /src/nvim/edit.c | |
parent | c3ac16cfebde54c32b6d900743b413d460523dfb (diff) | |
download | rneovim-ad34a376eb164852d2983341a9137a1e06a24bb9.tar.gz rneovim-ad34a376eb164852d2983341a9137a1e06a24bb9.tar.bz2 rneovim-ad34a376eb164852d2983341a9137a1e06a24bb9.zip |
Fix linting errors.
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index ceedcb5a99..b3222b0781 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -6589,7 +6589,7 @@ void fixthisline(IndentGetter get_the_indent) if (amount >= 0) { change_indent(INDENT_SET, amount, false, 0, true); if (linewhite(curwin->w_cursor.lnum)) { - did_ai = TRUE; // delete the indent if the line stays empty + did_ai = true; // delete the indent if the line stays empty } } } |