diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2014-09-26 16:05:49 -0400 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2014-09-26 16:05:49 -0400 |
| commit | d97a8e312e506b710284ca3495ed1eb4ea172f73 (patch) | |
| tree | ddf67487c4076ddc79d6f7c3cd6e7f5f22ea83b1 /src/nvim/globals.h | |
| parent | f7bb349848de3be4013e30e8a5f603aa7db5a4a8 (diff) | |
| parent | 2b937fe00d8b0b308cce87aee9f70699f8474c1e (diff) | |
| download | rneovim-d97a8e312e506b710284ca3495ed1eb4ea172f73.tar.gz rneovim-d97a8e312e506b710284ca3495ed1eb4ea172f73.tar.bz2 rneovim-d97a8e312e506b710284ca3495ed1eb4ea172f73.zip | |
Merge pull request #1209 from atwupack/vp-7.4.320
vim-patch:7.4.320
Diffstat (limited to 'src/nvim/globals.h')
| -rw-r--r-- | src/nvim/globals.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 465a48e5b2..2025295c11 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -468,10 +468,12 @@ EXTERN int keep_filetype INIT(= FALSE); /* value for did_filetype when * which one is preferred, au_new_curbuf is set to it */ EXTERN buf_T *au_new_curbuf INIT(= NULL); -// When deleting the buffer and autocmd_busy is TRUE, do not free the buffer -// but link it in the list starting with au_pending_free_buf, using b_next. -// Free the buffer when autocmd_busy is set to FALSE. +// When deleting a buffer/window and autocmd_busy is TRUE, do not free the +// buffer/window. but link it in the list starting with +// au_pending_free_buf/ap_pending_free_win, using b_next/w_next. +// Free the buffer/window when autocmd_busy is being set to FALSE. EXTERN buf_T *au_pending_free_buf INIT(= NULL); +EXTERN win_T *au_pending_free_win INIT(= NULL); /* * Mouse coordinates, set by check_termcode() |