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.
f0a521f4f7
This commit is contained in:
Jan Edmund Lazo
2019-04-13 19:46:21 -04:00
parent 8f2175e7d0
commit 6de1ed1ff1
4 changed files with 51 additions and 61 deletions

View File

@@ -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"