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-workspace.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-workspace.el')
-rw-r--r-- | exwm-workspace.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/exwm-workspace.el b/exwm-workspace.el index dd1f22a9a2ac..1db91275fa3c 100644 --- a/exwm-workspace.el +++ b/exwm-workspace.el @@ -150,8 +150,8 @@ Please manually run the hook `exwm-workspace-list-change-hook' afterwards.") (defsubst exwm-workspace--position (frame) "Retrieve index of given FRAME in workspace list. - -NIL if FRAME is not a workspace" +NIL if FRAME is not a workspace." + (declare (indent defun)) (cl-position frame exwm-workspace--list)) (defsubst exwm-workspace--count () @@ -160,6 +160,7 @@ NIL if FRAME is not a workspace" (defsubst exwm-workspace--workspace-p (frame) "Return t if FRAME is a workspace." + (declare (indent defun)) (memq frame exwm-workspace--list)) (defsubst exwm-workspace--workarea (frame) |