diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2018-04-24 20:38:00 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2018-05-23 22:07:27 +0200 |
commit | e7451f8a91e0a9452fc3c3627ac60dc80288252c (patch) | |
tree | df606b41f1cf56b8eeb05671ae8e9eb3f136601c /src/nvim/buffer.c | |
parent | de5d1e863c71c8da87422bdb94dc91749d4a8b61 (diff) | |
download | rneovim-e7451f8a91e0a9452fc3c3627ac60dc80288252c.tar.gz rneovim-e7451f8a91e0a9452fc3c3627ac60dc80288252c.tar.bz2 rneovim-e7451f8a91e0a9452fc3c3627ac60dc80288252c.zip |
Some renamings and doc changes
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index e5b7128248..af77a9891b 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -576,7 +576,7 @@ void close_buffer(win_T *win, buf_T *buf, int action, int abort_if_last) do_autochdir(); // disable live updates for the current buffer - buffer_updates_unregister_all(buf); + buf_updates_unregister_all(buf); /* * Remove the buffer from the list. @@ -789,7 +789,7 @@ free_buffer_stuff ( xfree(buf->b_start_fenc); buf->b_start_fenc = NULL; - buffer_updates_unregister_all(buf); + buf_updates_unregister_all(buf); } /* |