Add message-box and message-or-box to exwm-blocking-subrs (fix #874)

* exwm.el (exwm-blocking-subrs): Add `message-box' and
`message-or-box' to the list of blocking subrs.
This commit is contained in:
Daniel Mendler 2023-12-29 15:38:33 +01:00
parent 56db521a3e
commit 50681727e3

View file

@ -97,7 +97,9 @@
"Normal hook run when window title is updated."
:type 'hook)
(defcustom exwm-blocking-subrs '(x-file-dialog x-popup-dialog x-select-font)
(defcustom exwm-blocking-subrs
(list #'x-file-dialog #'x-popup-dialog #'x-select-font
#'message-box #'message-or-box)
"Subrs (primitives) that would normally block EXWM."
:type '(repeat function))