aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/undo.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-04-13 19:46:21 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-04-14 19:09:19 -0400
commit6de1ed1ff11a59b063ae8d199aab17977d7b445f (patch)
treef5157f3eb49856987dd9b84c89f322a40b9e57d2 /src/nvim/undo.c
parent8f2175e7d052e219a68e75640cf6547251d335c2 (diff)
downloadrneovim-6de1ed1ff11a59b063ae8d199aab17977d7b445f.tar.gz
rneovim-6de1ed1ff11a59b063ae8d199aab17977d7b445f.tar.bz2
rneovim-6de1ed1ff11a59b063ae8d199aab17977d7b445f.zip
vim-patch:8.0.0776: function prototypes missing without the quickfix feature
Problem: Function prototypes missing without the quickfix feature. (Tony Mechelynck) Solution: Move non-quickfix functions to buffer.c. https://github.com/vim/vim/commit/f0a521f4f76904edb74e182c12732189b347ff68
Diffstat (limited to 'src/nvim/undo.c')
-rw-r--r--src/nvim/undo.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c
index 41393c7ef4..8bb1b9e745 100644
--- a/src/nvim/undo.c
+++ b/src/nvim/undo.c
@@ -83,13 +83,11 @@
#include <string.h>
#include <fcntl.h>
-#include "nvim/vim.h"
+#include "nvim/buffer.h"
#include "nvim/ascii.h"
#include "nvim/undo.h"
-#include "nvim/macros.h"
#include "nvim/cursor.h"
#include "nvim/edit.h"
-#include "nvim/eval.h"
#include "nvim/fileio.h"
#include "nvim/fold.h"
#include "nvim/buffer_updates.h"
@@ -102,8 +100,6 @@
#include "nvim/option.h"
#include "nvim/os_unix.h"
#include "nvim/path.h"
-#include "nvim/quickfix.h"
-#include "nvim/screen.h"
#include "nvim/sha256.h"
#include "nvim/state.h"
#include "nvim/strings.h"