vim: include used definitions in headers

This is not an exhaustive commit, it merely ameliorates the situations a
bit. There are quite a few header files that don't include all the types
they use in their function/struct/... definitions. This throws of the
testing infrastructure (but is not such a problem for the main binary that
has the "tumbleweed of includes"-phenomenon).
This commit is contained in:
Nicolas Hillegeer
2014-07-12 20:13:56 +02:00
parent 06ca70b191
commit 7c6079f6f0
6 changed files with 9 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
#define NVIM_BUFFER_H
#include "nvim/pos.h" // for linenr_T
#include "nvim/ex_cmds_defs.h" // for exarg_T
/* Values for buflist_getfile() */
#define GETF_SETMARK 0x01 /* set pcmark before jumping */