mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
Merge pull request #20701 from neovim/backport-20662-to-release-0.8
[Backport release-0.8] vim-patch:8.1.0342,9.0.{0614,0616}: SpellFileMissing autocmd may delete buffer
This commit is contained in:
commit
59087b615d
@ -93,7 +93,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
static char *e_auabort = N_("E855: Autocommands caused command to abort");
|
static char *e_auabort = N_("E855: Autocommands caused command to abort");
|
||||||
static char *e_buflocked = N_("E937: Attempt to delete a buffer that is in use");
|
static char e_attempt_to_delete_buffer_that_is_in_use_str[]
|
||||||
|
= N_("E937: Attempt to delete a buffer that is in use: %s");
|
||||||
|
|
||||||
// Number of times free_buffer() was called.
|
// Number of times free_buffer() was called.
|
||||||
static int buf_free_count = 0;
|
static int buf_free_count = 0;
|
||||||
@ -401,6 +402,29 @@ bool buf_valid(buf_T *buf)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Return true when buffer "buf" can be unloaded.
|
||||||
|
/// Give an error message and return false when the buffer is locked or the
|
||||||
|
/// screen is being redrawn and the buffer is in a window.
|
||||||
|
static bool can_unload_buffer(buf_T *buf)
|
||||||
|
{
|
||||||
|
bool can_unload = !buf->b_locked;
|
||||||
|
|
||||||
|
if (can_unload && updating_screen) {
|
||||||
|
FOR_ALL_WINDOWS_IN_TAB(wp, curtab) {
|
||||||
|
if (wp->w_buffer == buf) {
|
||||||
|
can_unload = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!can_unload) {
|
||||||
|
char *fname = buf->b_fname != NULL ? buf->b_fname : buf->b_ffname;
|
||||||
|
semsg(_(e_attempt_to_delete_buffer_that_is_in_use_str),
|
||||||
|
fname != NULL ? fname : "[No Name]");
|
||||||
|
}
|
||||||
|
return can_unload;
|
||||||
|
}
|
||||||
|
|
||||||
/// Close the link to a buffer.
|
/// Close the link to a buffer.
|
||||||
///
|
///
|
||||||
/// @param win If not NULL, set b_last_cursor.
|
/// @param win If not NULL, set b_last_cursor.
|
||||||
@ -458,8 +482,7 @@ bool close_buffer(win_T *win, buf_T *buf, int action, bool abort_if_last, bool i
|
|||||||
|
|
||||||
// Disallow deleting the buffer when it is locked (already being closed or
|
// Disallow deleting the buffer when it is locked (already being closed or
|
||||||
// halfway a command that relies on it). Unloading is allowed.
|
// halfway a command that relies on it). Unloading is allowed.
|
||||||
if (buf->b_locked > 0 && (del_buf || wipe_buf)) {
|
if ((del_buf || wipe_buf) && !can_unload_buffer(buf)) {
|
||||||
emsg(_(e_buflocked));
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1206,8 +1229,7 @@ int do_buffer(int action, int start, int dir, int count, int forceit)
|
|||||||
if (unload) {
|
if (unload) {
|
||||||
int forward;
|
int forward;
|
||||||
bufref_T bufref;
|
bufref_T bufref;
|
||||||
if (buf->b_locked) {
|
if (!can_unload_buffer(buf)) {
|
||||||
emsg(_(e_buflocked));
|
|
||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
set_bufref(&bufref, buf);
|
set_bufref(&bufref, buf);
|
||||||
|
@ -1511,6 +1511,10 @@ static void spell_load_lang(char_u *lang)
|
|||||||
sl.sl_slang = NULL;
|
sl.sl_slang = NULL;
|
||||||
sl.sl_nobreak = false;
|
sl.sl_nobreak = false;
|
||||||
|
|
||||||
|
// Disallow deleting the current buffer. Autocommands can do weird things
|
||||||
|
// and cause "lang" to be freed.
|
||||||
|
curbuf->b_locked++;
|
||||||
|
|
||||||
// We may retry when no spell file is found for the language, an
|
// We may retry when no spell file is found for the language, an
|
||||||
// autocommand may load it then.
|
// autocommand may load it then.
|
||||||
for (int round = 1; round <= 2; round++) {
|
for (int round = 1; round <= 2; round++) {
|
||||||
@ -1553,6 +1557,8 @@ static void spell_load_lang(char_u *lang)
|
|||||||
STRCPY(fname_enc + strlen(fname_enc) - 3, "add.spl");
|
STRCPY(fname_enc + strlen(fname_enc) - 3, "add.spl");
|
||||||
do_in_runtimepath((char *)fname_enc, DIP_ALL, spell_load_cb, &sl);
|
do_in_runtimepath((char *)fname_enc, DIP_ALL, spell_load_cb, &sl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
curbuf->b_locked--;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the encoding used for spell checking: Use 'encoding', except that we
|
// Return the encoding used for spell checking: Use 'encoding', except that we
|
||||||
|
@ -2745,6 +2745,16 @@ func Test_FileType_spell()
|
|||||||
setglobal spellfile=
|
setglobal spellfile=
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" this was wiping out the current buffer and using freed memory
|
||||||
|
func Test_SpellFileMissing_bwipe()
|
||||||
|
next 0
|
||||||
|
au SpellFileMissing 0 bwipe
|
||||||
|
call assert_fails('set spell spelllang=0', 'E937:')
|
||||||
|
|
||||||
|
au! SpellFileMissing
|
||||||
|
bwipe
|
||||||
|
endfunc
|
||||||
|
|
||||||
" Test closing a window or editing another buffer from a FileChangedRO handler
|
" Test closing a window or editing another buffer from a FileChangedRO handler
|
||||||
" in a readonly buffer
|
" in a readonly buffer
|
||||||
func Test_FileChangedRO_winclose()
|
func Test_FileChangedRO_winclose()
|
||||||
|
@ -147,7 +147,7 @@ func Test_spell_file_missing()
|
|||||||
augroup TestSpellFileMissing
|
augroup TestSpellFileMissing
|
||||||
autocmd! SpellFileMissing * bwipe
|
autocmd! SpellFileMissing * bwipe
|
||||||
augroup END
|
augroup END
|
||||||
call assert_fails('set spell spelllang=ab_cd', 'E797:')
|
call assert_fails('set spell spelllang=ab_cd', 'E937:')
|
||||||
|
|
||||||
" clean up
|
" clean up
|
||||||
augroup TestSpellFileMissing
|
augroup TestSpellFileMissing
|
||||||
|
@ -5,6 +5,7 @@ local clear, command, nvim, testprg =
|
|||||||
helpers.clear, helpers.command, helpers.nvim, helpers.testprg
|
helpers.clear, helpers.command, helpers.nvim, helpers.testprg
|
||||||
local eval, eq, neq, retry =
|
local eval, eq, neq, retry =
|
||||||
helpers.eval, helpers.eq, helpers.neq, helpers.retry
|
helpers.eval, helpers.eq, helpers.neq, helpers.retry
|
||||||
|
local matches = helpers.matches
|
||||||
local ok = helpers.ok
|
local ok = helpers.ok
|
||||||
local feed = helpers.feed
|
local feed = helpers.feed
|
||||||
local pcall_err = helpers.pcall_err
|
local pcall_err = helpers.pcall_err
|
||||||
@ -22,7 +23,8 @@ describe('autocmd TermClose', function()
|
|||||||
local function test_termclose_delete_own_buf()
|
local function test_termclose_delete_own_buf()
|
||||||
command('autocmd TermClose * bdelete!')
|
command('autocmd TermClose * bdelete!')
|
||||||
command('terminal')
|
command('terminal')
|
||||||
eq('Vim(bdelete):E937: Attempt to delete a buffer that is in use', pcall_err(command, 'bdelete!'))
|
matches('^Vim%(bdelete%):E937: Attempt to delete a buffer that is in use: term://',
|
||||||
|
pcall_err(command, 'bdelete!'))
|
||||||
assert_alive()
|
assert_alive()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user