Mercurial > vim
diff src/proto/fileio.pro @ 3997:c83cd3d01128 v7.3.753
updated for version 7.3.753
Problem: When there is a QuitPre autocommand using ":q" twice does not work
for exiting when there are more files to edit.
Solution: Do not decrement quitmore in an autocommand. (Techlive Zheng)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 05 Dec 2012 19:13:18 +0100 |
parents | de60f6fa3d8d |
children | 0fcb050fd79d |
line wrap: on
line diff
--- a/src/proto/fileio.pro +++ b/src/proto/fileio.pro @@ -47,6 +47,7 @@ int has_cursormovedI __ARGS((void)); int has_insertcharpre __ARGS((void)); void block_autocmds __ARGS((void)); void unblock_autocmds __ARGS((void)); +char_u *getnextac __ARGS((int c, void *cookie, int indent)); 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));