; exwm--global-minor-mode-body: Fix docstring

* exwm-core.el (exwm--global-minor-mode-body): Fix docstring.
This commit is contained in:
Daniel Mendler 2024-06-06 19:28:00 +02:00
parent 4042de16fd
commit c3d1bdabb0
No known key found for this signature in database
GPG key ID: D88ADB2A2693CA43

View file

@ -411,9 +411,10 @@ One of `line-mode' or `char-mode'.")
vertical-scroll-bar nil))
(defmacro exwm--global-minor-mode-body (name &optional init exit)
"Define EXWM namespaced global minor mode with NAME.
EXWM's init-hook and exit-hook are modified to call INIT and EXIT functions.
If an X connection exists, the mode is immediately enabled or disabled."
"Global minor mode body for mode with NAME.
The INIT and EXIT functions are added to `exwm-init-hook' and
`exwm-exit-hook' respectively. If an X connection exists, the mode is
immediately enabled or disabled."
(declare (indent 1) (debug t))
(let* ((mode (intern (format "exwm-%s-mode" name)))
(init (or init (intern (format "exwm-%s--init" name))))