1
0
forked from aniani/vim

updated for version 7.0052

This commit is contained in:
Bram Moolenaar
2005-02-26 23:04:13 +00:00
parent 5313dcb75a
commit 05159a0c6a
57 changed files with 9098 additions and 348 deletions

View File

@@ -1533,7 +1533,8 @@ int vim_memcmp __ARGS((void *, void *, size_t));
#define VV_INSERTMODE 33
#define VV_VAL 34
#define VV_KEY 35
#define VV_LEN 36 /* number of v: vars */
#define VV_PROFILING 36
#define VV_LEN 37 /* number of v: vars */
#ifdef FEAT_CLIPBOARD
@@ -1620,6 +1621,12 @@ typedef int VimClipboard; /* This is required for the prototypes. */
# endif
#endif
#ifdef FEAT_PROFILE
typedef struct timeval proftime_T;
#else
typedef int proftime_T; /* dummy for function prototypes */
#endif
#include "option.h" /* option variables and defines */
#include "ex_cmds.h" /* Ex command defines */
#include "proto.h" /* function prototypes */
@@ -1865,4 +1872,8 @@ typedef int VimClipboard; /* This is required for the prototypes. */
# define handle_signal(x) 0
#endif
/* flags for skip_vimgrep_pat() */
#define VGR_GLOBAL 1
#define VGR_NOJUMP 2
#endif /* VIM__H */