mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
ui/popup: fix buffer cleanup ignoring kill-buffer-hook
This commit is contained in:
@ -27,7 +27,7 @@ the buffer is visible, then set another timer and try again later."
|
||||
(let (confirm-kill-processes)
|
||||
(when-let (process (get-buffer-process buffer))
|
||||
(kill-process process))
|
||||
(let (kill-buffer-hook kill-buffer-query-functions)
|
||||
(let (kill-buffer-query-functions)
|
||||
(kill-buffer buffer))))))))))
|
||||
|
||||
(defun +popup--delete-window (window)
|
||||
|
Reference in New Issue
Block a user