summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-11-19 20:34:59 +0100
committerBram Moolenaar <Bram@vim.org>2017-11-19 20:34:59 +0100
commit40e280d949fa26e33f69c4bf80ccc0b70f2e13f6 (patch)
tree109970e03f15ef98867cbf23f10d3b8a4917e9f9 /src/vim.h
parent7221fce8b395972b57aea5f36ba2844fe1d4c259 (diff)
downloadvim-git-40e280d949fa26e33f69c4bf80ccc0b70f2e13f6.tar.gz
patch 8.0.1321: can't build huge version with Athenav8.0.1321
Problem: Can't build huge version with Athena. (Mark Kelly) Solution: Move including beval.h to before structs.h. Include beval.pro like other proto files.
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/vim.h b/src/vim.h
index d5518f81d..96bab71cf 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1809,14 +1809,15 @@ typedef int sock_T;
/* Include option.h before structs.h, because the number of window-local and
* buffer-local options is used there. */
-#include "option.h" /* options and default values */
+#include "option.h" /* options and default values */
+
+#include "beval.h" /* BalloonEval */
/* Note that gui.h is included by structs.h */
-#include "structs.h" /* file that defines many structures */
+#include "structs.h" /* defines many structures */
#include "alloc.h"
-#include "beval.h"
/* Values for "do_profiling". */
#define PROF_NONE 0 /* profiling not started */