diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-11 21:16:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-11 21:16:47 +0000 |
commit | 8ee8926785586c73354b67ac401bb692f893bea0 (patch) | |
tree | 24010bd749b69e235bbe5ee146e6fdc22d399d6f /src/proto | |
parent | ade0083d3ad61d86368a77bd1e499231eea9a3eb (diff) | |
download | vim-git-8ee8926785586c73354b67ac401bb692f893bea0.tar.gz |
updated for version 7.0221
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/buffer.pro | 4 | ||||
-rw-r--r-- | src/proto/popupmenu.pro | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/proto/buffer.pro b/src/proto/buffer.pro index 73ad5306e..91934432d 100644 --- a/src/proto/buffer.pro +++ b/src/proto/buffer.pro @@ -46,9 +46,9 @@ int append_arg_number __ARGS((win_T *wp, char_u *buf, int add_file, int maxlen)) char_u *fix_fname __ARGS((char_u *fname)); void fname_expand __ARGS((buf_T *buf, char_u **ffname, char_u **sfname)); char_u *alist_name __ARGS((aentry_T *aep)); -void do_arg_all __ARGS((int count, int forceit)); +void do_arg_all __ARGS((int count, int forceit, int keep_tabs)); void ex_buffer_all __ARGS((exarg_T *eap)); -void do_modelines __ARGS((int win_only)); +void do_modelines __ARGS((int flags)); int read_viminfo_bufferlist __ARGS((vir_T *virp, int writing)); void write_viminfo_bufferlist __ARGS((FILE *fp)); char *buf_spname __ARGS((buf_T *buf)); diff --git a/src/proto/popupmenu.pro b/src/proto/popupmenu.pro index 05f9eabb3..f332d3c90 100644 --- a/src/proto/popupmenu.pro +++ b/src/proto/popupmenu.pro @@ -1,7 +1,6 @@ /* popupmenu.c */ -void pum_display __ARGS((pumitem_T *array, int size, int selected, int row, int height, int col)); +void pum_display __ARGS((pumitem_T *array, int size, int selected)); void pum_redraw __ARGS((void)); -void pum_set_selected __ARGS((int n)); void pum_undisplay __ARGS((void)); void pum_clear __ARGS((void)); int pum_visible __ARGS((void)); |