about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2023-12-29T14·38+0100
committerDaniel Mendler <mail@daniel-mendler.de>2023-12-29T14·39+0100
commit50681727e3310d6f23e9f06dab83be5eb1f99763 (patch)
tree4471c5c628756887879b87dbd2eff6cb69a2efb2
parent56db521a3ed6a2ccc1193110a56545a1992e9654 (diff)
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.
-rw-r--r--exwm.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/exwm.el b/exwm.el
index 5745533720..b8b9c2e8da 100644
--- a/exwm.el
+++ b/exwm.el
@@ -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))