diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-04-10 19:30:41 +0200 |
---|---|---|
committer | Thomas Wienecke <wienecke.t@gmail.com> | 2014-05-03 17:41:06 +0200 |
commit | 5446fbad8818204928af778f766e66a7c611dc53 (patch) | |
tree | de4d3fa5097712a3efe81d69d6817626fe81fa16 | |
parent | bdcb258192fed62ccef36c6841968a4b1a566da4 (diff) | |
download | rneovim-5446fbad8818204928af778f766e66a7c611dc53.tar.gz rneovim-5446fbad8818204928af778f766e66a7c611dc53.tar.bz2 rneovim-5446fbad8818204928af778f766e66a7c611dc53.zip |
Remove unused function is_autocmd_blocked.
-rw-r--r-- | src/fileio.c | 5 | ||||
-rw-r--r-- | src/fileio.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/fileio.c b/src/fileio.c index d4448c2f16..e9aff651c5 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -7428,11 +7428,6 @@ void unblock_autocmds(void) apply_autocmds(EVENT_TERMRESPONSE, NULL, NULL, FALSE, curbuf); } -int is_autocmd_blocked(void) -{ - return autocmd_blocked != 0; -} - /* * Find next autocommand pattern that matches. */ diff --git a/src/fileio.h b/src/fileio.h index 150178b142..8b743aab0d 100644 --- a/src/fileio.h +++ b/src/fileio.h @@ -73,7 +73,6 @@ int has_textchangedI(void); int has_insertcharpre(void); void block_autocmds(void); void unblock_autocmds(void); -int is_autocmd_blocked(void); char_u *getnextac(int c, void *cookie, int indent); int has_autocmd(event_T event, char_u *sfname, buf_T *buf); char_u *get_augroup_name(expand_T *xp, int idx); |