; Fix last change in exwm-randr.el

* exwm-randr.el (exwm-randr--init): explicitly return from
exwm-randr--init.
This commit is contained in:
Steven Allen 2024-06-09 08:14:32 -07:00
parent dd9c11125f
commit dd95ff193a

View file

@ -330,7 +330,8 @@ Refresh when any RandR 1.5 monitor changes."
(cl-defun exwm-randr--init () (cl-defun exwm-randr--init ()
"Initialize RandR extension and EXWM RandR module." "Initialize RandR extension and EXWM RandR module."
(exwm--log) (exwm--log)
(when exwm-randr--connection (cl-return)) (when exwm-randr--connection
(cl-return-from exwm-randr--init))
(setq exwm-randr--connection (xcb:connect)) (setq exwm-randr--connection (xcb:connect))
(set-process-query-on-exit-flag (slot-value exwm-randr--connection 'process) nil) (set-process-query-on-exit-flag (slot-value exwm-randr--connection 'process) nil)
(when (= 0 (slot-value (xcb:get-extension-data exwm-randr--connection 'xcb:randr) (when (= 0 (slot-value (xcb:get-extension-data exwm-randr--connection 'xcb:randr)