diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-28 22:48:19 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-28 22:48:19 +0000 |
commit | 7383034c0ab657158c4c69146254beffdea4859e (patch) | |
tree | 38e5f9f9da336e554d95d878bd36b1d21194efc5 /src/proto | |
parent | 8cd06cabf3d33bd72b4fac7d49e95d2695a90aa8 (diff) | |
download | vim-7383034c0ab657158c4c69146254beffdea4859e.zip |
updated for version 7.0054
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ex_cmds2.pro | 1 | ||||
-rw-r--r-- | src/proto/misc1.pro | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index 72d88dd74..a218810ec 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -18,6 +18,7 @@ void profile_add __ARGS((proftime_T *tm, proftime_T *tm2)); 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)); char *profile_msg __ARGS((proftime_T *tm)); void ex_profile __ARGS((exarg_T *eap)); void profile_dump __ARGS((void)); diff --git a/src/proto/misc1.pro b/src/proto/misc1.pro index 5a42c13d1..e98fd0bec 100644 --- a/src/proto/misc1.pro +++ b/src/proto/misc1.pro @@ -87,4 +87,7 @@ void addfile __ARGS((garray_T *gap, char_u *f, int flags)); char_u *get_cmd_output __ARGS((char_u *cmd, char_u *infile, int flags)); void FreeWild __ARGS((int count, char_u **files)); int goto_im __ARGS((void)); +void mch_startjmp __ARGS((void)); +void mch_endjmp __ARGS((void)); +void mch_didjmp __ARGS((void)); /* vim: set ft=c : */ |