diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-24 23:07:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-24 23:07:47 +0000 |
commit | 1ec484f58e9fef3666e80aa835d99a287c155911 (patch) | |
tree | 0481a24509748a218d3abb861103c9c385b6f75e /src/proto | |
parent | 0a5fe2140db2e6688a7ef42031a21d8293038715 (diff) | |
download | vim-git-1ec484f58e9fef3666e80aa835d99a287c155911.tar.gz |
updated for version 7.0092
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/eval.pro | 2 | ||||
-rw-r--r-- | src/proto/fileio.pro | 1 | ||||
-rw-r--r-- | src/proto/hashtable.pro | 1 | ||||
-rw-r--r-- | src/proto/os_unix.pro | 1 | ||||
-rw-r--r-- | src/proto/spell.pro | 1 | ||||
-rw-r--r-- | src/proto/window.pro | 1 |
6 files changed, 6 insertions, 1 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro index 13bd82af8..539baa6b7 100644 --- a/src/proto/eval.pro +++ b/src/proto/eval.pro @@ -1,5 +1,6 @@ /* eval.c */ void eval_init __ARGS((void)); +void eval_clear __ARGS((void)); char_u *func_name __ARGS((void *cookie)); linenr_T *func_breakpoint __ARGS((void *cookie)); int *func_dbg_tick __ARGS((void *cookie)); @@ -60,6 +61,7 @@ void ex_echo __ARGS((exarg_T *eap)); void ex_echohl __ARGS((exarg_T *eap)); void ex_execute __ARGS((exarg_T *eap)); void ex_function __ARGS((exarg_T *eap)); +void free_all_functions __ARGS((void)); void func_dump_profile __ARGS((FILE *fd)); char_u *get_user_func_name __ARGS((expand_T *xp, int idx)); void ex_delfunction __ARGS((exarg_T *eap)); diff --git a/src/proto/fileio.pro b/src/proto/fileio.pro index 7d59f557b..8b051130c 100644 --- a/src/proto/fileio.pro +++ b/src/proto/fileio.pro @@ -23,6 +23,7 @@ char_u *vim_tempname __ARGS((int extra_char)); void forward_slash __ARGS((char_u *fname)); void aubuflocal_remove __ARGS((buf_T *buf)); void do_augroup __ARGS((char_u *arg, int del_group)); +void free_all_autocmds __ARGS((void)); int check_ei __ARGS((void)); char_u *au_event_disable __ARGS((char *what)); void au_event_restore __ARGS((char_u *old_ei)); diff --git a/src/proto/hashtable.pro b/src/proto/hashtable.pro index e82f1756a..aebb458d6 100644 --- a/src/proto/hashtable.pro +++ b/src/proto/hashtable.pro @@ -8,7 +8,6 @@ int hash_add __ARGS((hashtab_T *ht, char_u *key)); int hash_add_item __ARGS((hashtab_T *ht, hashitem_T *hi, char_u *key, hash_T hash)); void hash_remove __ARGS((hashtab_T *ht, hashitem_T *hi)); void hash_lock __ARGS((hashtab_T *ht)); -void hash_lock_size __ARGS((hashtab_T *ht, int size)); void hash_unlock __ARGS((hashtab_T *ht)); hash_T hash_hash __ARGS((char_u *key)); /* vim: set ft=c : */ diff --git a/src/proto/os_unix.pro b/src/proto/os_unix.pro index 3554040b8..d2f5e174e 100644 --- a/src/proto/os_unix.pro +++ b/src/proto/os_unix.pro @@ -41,6 +41,7 @@ int mch_isdir __ARGS((char_u *name)); int mch_can_exe __ARGS((char_u *name)); int mch_nodetype __ARGS((char_u *name)); void mch_early_init __ARGS((void)); +void mch_free_mem __ARGS((void)); void mch_exit __ARGS((int r)); void mch_settmode __ARGS((int tmode)); void get_stty __ARGS((void)); diff --git a/src/proto/spell.pro b/src/proto/spell.pro index 900f3bf47..37830ca6e 100644 --- a/src/proto/spell.pro +++ b/src/proto/spell.pro @@ -3,6 +3,7 @@ int spell_check __ARGS((win_T *wp, char_u *ptr, int *attrp)); int spell_move_to __ARGS((int dir, int allwords, int curline)); void spell_cat_line __ARGS((char_u *buf, char_u *line, int maxlen)); char_u *did_set_spelllang __ARGS((buf_T *buf)); +void spell_free_all __ARGS((void)); void spell_reload __ARGS((void)); void put_bytes __ARGS((FILE *fd, long_u nr, int len)); void ex_mkspell __ARGS((exarg_T *eap)); diff --git a/src/proto/window.pro b/src/proto/window.pro index f01eee00c..fd3d62f37 100644 --- a/src/proto/window.pro +++ b/src/proto/window.pro @@ -8,6 +8,7 @@ void win_move_after __ARGS((win_T *win1, win_T *win2)); void win_equal __ARGS((win_T *next_curwin, int current, int dir)); void close_windows __ARGS((buf_T *buf)); void win_close __ARGS((win_T *win, int free_buf)); +void win_free_all __ARGS((void)); void close_others __ARGS((int message, int forceit)); void win_init __ARGS((win_T *wp)); void win_alloc_first __ARGS((void)); |