diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-06-22 08:35:28 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-06-22 08:35:28 +0200 |
commit | e1c6109e62b4e1d12ebdab67140f82cc7dc2c0d1 (patch) | |
tree | 3bfaaf5fdba2d6c01288880f865620db1d6c1a88 /src/nvim/undo.c | |
parent | b7514493a0c4a4389a5921f15b0b429dae5c75e7 (diff) | |
parent | eaf2a25f12342622414b264870f41939fe41355a (diff) | |
download | rneovim-e1c6109e62b4e1d12ebdab67140f82cc7dc2c0d1.tar.gz rneovim-e1c6109e62b4e1d12ebdab67140f82cc7dc2c0d1.tar.bz2 rneovim-e1c6109e62b4e1d12ebdab67140f82cc7dc2c0d1.zip |
Merge #8618 'Replace b_changedtick with always-inline functions'
Diffstat (limited to 'src/nvim/undo.c')
-rw-r--r-- | src/nvim/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c index a6a3b2cc5f..2055b4879e 100644 --- a/src/nvim/undo.c +++ b/src/nvim/undo.c @@ -2289,7 +2289,7 @@ static void u_undoredo(int undo, bool do_buf_event) unchanged(curbuf, FALSE); } - // because the calls to changed()/unchanged() above will bump b_changedtick + // because the calls to changed()/unchanged() above will bump changedtick // again, we need to send a nvim_buf_lines_event with just the new value of // b:changedtick if (do_buf_event && kv_size(curbuf->update_channels)) { |