comparison src/testdir/test_tagfunc.vim @ 30106:0e9b58353412 v9.0.0389

patch 9.0.0389: crash when 'tagfunc' closes the window Commit: https://github.com/vim/vim/commit/ccfde4d028e891a41e3548323c3d47b06fb0b83e Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 5 19:51:13 2022 +0100 patch 9.0.0389: crash when 'tagfunc' closes the window Problem: Crash when 'tagfunc' closes the window. Solution: Bail out when the window was closed.
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Sep 2022 21:00:03 +0200
parents 1aec47ab35f0
children c8ebe35b2475
comparison
equal deleted inserted replaced
30105:d4352c59cedb 30106:0e9b58353412
399 399
400 delfunc g:Tag0unc0 400 delfunc g:Tag0unc0
401 set tagfunc= 401 set tagfunc=
402 endfunc 402 endfunc
403 403
404 func Test_tagfunc_closes_window()
405 split any
406 func MytagfuncClose(pat, flags, info)
407 close
408 return [{'name' : 'mytag', 'filename' : 'Xtest', 'cmd' : '1'}]
409 endfunc
410 set tagfunc=MytagfuncClose
411 call assert_fails('tag xyz', 'E1299:')
412
413 set tagfunc=
414 endfunc
415
416
404 " vim: shiftwidth=2 sts=2 expandtab 417 " vim: shiftwidth=2 sts=2 expandtab