aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/if_cscope.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/if_cscope.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/if_cscope.c')
-rw-r--r--src/nvim/if_cscope.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c
index 625d6baa17..8b6fd6c705 100644
--- a/src/nvim/if_cscope.c
+++ b/src/nvim/if_cscope.c
@@ -16,11 +16,10 @@
#include <inttypes.h>
#include <fcntl.h>
-#include "nvim/vim.h"
+#include "nvim/buffer.h"
#include "nvim/ascii.h"
#include "nvim/if_cscope.h"
#include "nvim/charset.h"
-#include "nvim/eval.h"
#include "nvim/fileio.h"
#include "nvim/message.h"
#include "nvim/memory.h"
@@ -29,7 +28,6 @@
#include "nvim/quickfix.h"
#include "nvim/strings.h"
#include "nvim/tag.h"
-#include "nvim/window.h"
#include "nvim/os/os.h"
#include "nvim/os/input.h"
#include "nvim/event/stream.h"