updated for version 7.0052
diff --git a/src/vim.h b/src/vim.h
index fa554b0..36e5d67 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1533,7 +1533,8 @@
#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 @@
# 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 @@
# define handle_signal(x) 0
#endif
+/* flags for skip_vimgrep_pat() */
+#define VGR_GLOBAL 1
+#define VGR_NOJUMP 2
+
#endif /* VIM__H */