diff options
author | Carlo Abelli <carlo.abelli@gmail.com> | 2017-04-06 08:48:42 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-06 14:48:42 +0200 |
commit | c501d7c432693705482f76a384a98b4b4c0ef1a9 (patch) | |
tree | b3641e45f7d5312d66326d10d2a810993b0b2ddd /src | |
parent | 210b013ce75b5ea8a897071e32decc1e1f88189e (diff) | |
download | rneovim-c501d7c432693705482f76a384a98b4b4c0ef1a9.tar.gz rneovim-c501d7c432693705482f76a384a98b4b4c0ef1a9.tar.bz2 rneovim-c501d7c432693705482f76a384a98b4b4c0ef1a9.zip |
refactor/single-include: diff.h (#6443)
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/nvim/diff.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 5a5ebc4415..d0f75a2b5b 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -425,7 +425,6 @@ endfunction() set(NO_SINGLE_CHECK_HEADERS cursor_shape.h - diff.h digraph.h ex_cmds.h ex_getln.h diff --git a/src/nvim/diff.h b/src/nvim/diff.h index f6cef1cafd..3624ce29bb 100644 --- a/src/nvim/diff.h +++ b/src/nvim/diff.h @@ -1,6 +1,9 @@ #ifndef NVIM_DIFF_H #define NVIM_DIFF_H +#include "nvim/pos.h" +#include "nvim/ex_cmds_defs.h" + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "diff.h.generated.h" #endif |