comparison src/vim.h @ 9571:5eaa708ab50d v7.4.2063

commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 17 22:13:49 2016 +0200 patch 7.4.2063 Problem: eval.c is still too big. Solution: Split off internal functions to evalfunc.c.
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Jul 2016 22:30:06 +0200
parents 695186e11daa
children 1fdd97be3967
comparison
equal deleted inserted replaced
9570:695186e11daa 9571:5eaa708ab50d
2049 typedef struct _stat64 stat_T; 2049 typedef struct _stat64 stat_T;
2050 #else 2050 #else
2051 typedef struct stat stat_T; 2051 typedef struct stat stat_T;
2052 #endif 2052 #endif
2053 2053
2054 typedef enum
2055 {
2056 ASSERT_EQUAL,
2057 ASSERT_NOTEQUAL,
2058 ASSERT_MATCH,
2059 ASSERT_NOTMATCH,
2060 ASSERT_OTHER
2061 } assert_type_T;
2062
2054 #include "ex_cmds.h" /* Ex command defines */ 2063 #include "ex_cmds.h" /* Ex command defines */
2055 #include "proto.h" /* function prototypes */ 2064 #include "proto.h" /* function prototypes */
2056 2065
2057 /* This has to go after the include of proto.h, as proto/gui.pro declares 2066 /* This has to go after the include of proto.h, as proto/gui.pro declares
2058 * functions of these names. The declarations would break if the defines had 2067 * functions of these names. The declarations would break if the defines had