aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/undo.c
diff options
context:
space:
mode:
authorKillTheMule <KillTheMule@users.noreply.github.com>2018-02-11 23:02:53 +0100
committerKillTheMule <KillTheMule@users.noreply.github.com>2018-05-23 22:07:27 +0200
commit2106bada5bbd6de4729a8714d011e0eca61cee35 (patch)
tree63ac8998a25853f3fd5cbf5af1556b368a63dbcf /src/nvim/undo.c
parent6bdcbef2f5acfd9815599c751bd8dcbe3204281f (diff)
downloadrneovim-2106bada5bbd6de4729a8714d011e0eca61cee35.tar.gz
rneovim-2106bada5bbd6de4729a8714d011e0eca61cee35.tar.bz2
rneovim-2106bada5bbd6de4729a8714d011e0eca61cee35.zip
Enable -Wconversion
Diffstat (limited to 'src/nvim/undo.c')
-rw-r--r--src/nvim/undo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c
index 9da9693c90..ed4515398d 100644
--- a/src/nvim/undo.c
+++ b/src/nvim/undo.c
@@ -1698,8 +1698,8 @@ bool u_undo_and_forget(int count)
count = 1;
}
undo_undoes = true;
- // don't send a nvim_buf_update for this undo is part of 'inccommand' playing with
- // buffer contents
+ // don't send a nvim_buf_update for this undo is part of 'inccommand' playing
+ // with buffer contents
u_doit(count, true, false);
if (curbuf->b_u_curhead == NULL) {