diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-09 23:53:20 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-09 23:53:20 +0000 |
commit | 754b56089f334509ee23f70fe9d046120e91f0e6 (patch) | |
tree | a22dc3faed963271a15be3dff335fc4de2f37200 /src/proto | |
parent | cf0c554e3f841eefd3208aee3f6359da3e6395f4 (diff) | |
download | vim-754b56089f334509ee23f70fe9d046120e91f0e6.zip |
updated for version 7.0195
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/fileio.pro | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/proto/fileio.pro b/src/proto/fileio.pro index e42c63956..a8c4142ef 100644 --- a/src/proto/fileio.pro +++ b/src/proto/fileio.pro @@ -33,11 +33,13 @@ int do_doautocmd __ARGS((char_u *arg, int do_msg)); void ex_doautoall __ARGS((exarg_T *eap)); void aucmd_prepbuf __ARGS((aco_save_T *aco, buf_T *buf)); void aucmd_restbuf __ARGS((aco_save_T *aco)); -int apply_autocmds __ARGS((EVENT_T event, char_u *fname, char_u *fname_io, int force, buf_T *buf)); -int apply_autocmds_retval __ARGS((EVENT_T event, char_u *fname, char_u *fname_io, int force, buf_T *buf, int *retval)); +int apply_autocmds __ARGS((event_T event, char_u *fname, char_u *fname_io, int force, buf_T *buf)); +int apply_autocmds_retval __ARGS((event_T event, char_u *fname, char_u *fname_io, int force, buf_T *buf, int *retval)); int has_cursorhold __ARGS((void)); int trigger_cursorhold __ARGS((void)); -int has_autocmd __ARGS((EVENT_T event, char_u *sfname, buf_T *buf)); +int has_cursormoved __ARGS((void)); +int has_cursormovedI __ARGS((void)); +int has_autocmd __ARGS((event_T event, char_u *sfname, buf_T *buf)); char_u *get_augroup_name __ARGS((expand_T *xp, int idx)); char_u *set_context_in_autocmd __ARGS((expand_T *xp, char_u *arg, int doautocmd)); char_u *get_event_name __ARGS((expand_T *xp, int idx)); |