mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 07:58:35 +00:00
vim-patch:8.2.0004: get E685 and E931 if buffer reload is interrupted
Problem: Get E685 and E931 if buffer reload is interrupted.
Solution: Do not abort deleting a dummy buffer. (closes vim/vim#5361)
a6e8f888e7
This commit is contained in:
@@ -58,9 +58,10 @@ enum dobuf_start_values {
|
||||
|
||||
// flags for buf_freeall()
|
||||
enum bfa_values {
|
||||
BFA_DEL = 1, // buffer is going to be deleted
|
||||
BFA_WIPE = 2, // buffer is going to be wiped out
|
||||
BFA_KEEP_UNDO = 4, // do not free undo information
|
||||
BFA_DEL = 1, // buffer is going to be deleted
|
||||
BFA_WIPE = 2, // buffer is going to be wiped out
|
||||
BFA_KEEP_UNDO = 4, // do not free undo information
|
||||
BFA_IGNORE_ABORT = 8, // do not abort for aborting()
|
||||
};
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
|
Reference in New Issue
Block a user