diff options
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) |