summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-02-26 23:04:13 +0000
committerBram Moolenaar <Bram@vim.org>2005-02-26 23:04:13 +0000
commit05159a0c6a27a030c8497c5cf836977090f9e75d (patch)
tree9ccc167cf3e830e5d01aff4555f99d854cbb623b /src/vim.h
parent5313dcb75ac76501f23d21ac94efdbeeabc860bc (diff)
downloadvim-git-05159a0c6a27a030c8497c5cf836977090f9e75d.tar.gz
updated for version 7.0052v7.0052
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/vim.h b/src/vim.h
index fa554b026..36e5d67f0 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -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 */