summaryrefslogtreecommitdiffstats
path: root/src/proto/ex_cmds2.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-06 14:01:46 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-06 14:01:46 +0200
commit8a7f5a2d4379bdc16502c01456bb4dc5051ed965 (patch)
tree7d186db050fb2682a54269a598f65dbffc75cb6d /src/proto/ex_cmds2.pro
parentcd2d8bb6ea55179d69aaf559942133ed8e93341e (diff)
updated for version 7.3.1129v7.3.1129
Problem: Can't see what pattern in syntax highlighting is slow. Solution: Add the ":syntime" command.
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r--src/proto/ex_cmds2.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro
index e4406d161a..d30ba41efa 100644
--- a/src/proto/ex_cmds2.pro
+++ b/src/proto/ex_cmds2.pro
@@ -17,12 +17,13 @@ char *profile_msg __ARGS((proftime_T *tm));
void profile_setlimit __ARGS((long msec, proftime_T *tm));
int profile_passed_limit __ARGS((proftime_T *tm));
void profile_zero __ARGS((proftime_T *tm));
+void profile_divide __ARGS((proftime_T *tm, int count, proftime_T *tm2));
void profile_add __ARGS((proftime_T *tm, proftime_T *tm2));
void profile_self __ARGS((proftime_T *self, proftime_T *total, proftime_T *children));
void profile_get_wait __ARGS((proftime_T *tm));
void profile_sub_wait __ARGS((proftime_T *tm, proftime_T *tma));
int profile_equal __ARGS((proftime_T *tm1, proftime_T *tm2));
-int profile_cmp __ARGS((proftime_T *tm1, proftime_T *tm2));
+int profile_cmp __ARGS((const proftime_T *tm1, const proftime_T *tm2));
void ex_profile __ARGS((exarg_T *eap));
char_u *get_profile_name __ARGS((expand_T *xp, int idx));
void set_context_in_profile_cmd __ARGS((expand_T *xp, char_u *arg));