diff options
author | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2023-08-18T00·00+0000 |
---|---|---|
committer | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2023-08-18T00·00+0000 |
commit | d8fcf18db77b845e1d787558f00aa21dc93310f3 (patch) | |
tree | 7835d687368f38362b5d575a7953b5dba1b0a9f8 /exwm-core.el | |
parent | d340a6a563ed3e3358c938c8e9a8cab41e8747f3 (diff) |
Declare defsubst indentation
* exwm-core.el (exwm--id->buffer, exwm--buffer->id, exwm--terminal-p): * exwm-input.el (exwm-input--unread-event): * exwm-workspace.el (exwm-workspace--position) (exwm-workspace--workspace-p): Declare indentation.
Diffstat (limited to 'exwm-core.el')
-rw-r--r-- | exwm-core.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/exwm-core.el b/exwm-core.el index 75c7c1b17b77..bd6fcf822cbd 100644 --- a/exwm-core.el +++ b/exwm-core.el @@ -116,10 +116,12 @@ FORMAT-STRING is a string specifying the message to output, as in (defsubst exwm--id->buffer (id) "X window ID => Emacs buffer." + (declare (indent defun)) (cdr (assoc id exwm--id-buffer-alist))) (defsubst exwm--buffer->id (buffer) "Emacs buffer BUFFER => X window ID." + (declare (indent defun)) (car (rassoc buffer exwm--id-buffer-alist))) (defun exwm--lock (&rest _args) @@ -183,6 +185,7 @@ least SECS seconds later." (defsubst exwm--terminal-p (&optional frame) "Return t when FRAME's terminal is EXWM's terminal. If FRAME is null, use selected frame." + (declare (indent defun)) (eq exwm--terminal (frame-terminal frame))) (defun exwm--get-client-event-mask () |