diff options
author | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2016-07-17T12·00+0000 |
---|---|---|
committer | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2016-07-17T12·00+0000 |
commit | 35e1655dc58d5653d4c3192d12cb5bfe61aa6960 (patch) | |
tree | 851cef06fc81d2a8b99199c8bef9fe232545d2c9 /exwm-workspace.el | |
parent | 90185457261eb77ac80609d5d219e0837e81af82 (diff) |
Move defvars to the top
* exwm-workspace.el (exwm-workspace--current) (exwm-workspace-current-index): Do it.
Diffstat (limited to 'exwm-workspace.el')
-rw-r--r-- | exwm-workspace.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exwm-workspace.el b/exwm-workspace.el index e2df37ede98e..4d8380d08122 100644 --- a/exwm-workspace.el +++ b/exwm-workspace.el @@ -29,6 +29,8 @@ (defvar exwm-workspace-number 4 "Number of workspaces (1 ~ 10).") (defvar exwm-workspace--list nil "List of all workspaces (Emacs frames).") +(defvar exwm-workspace--current nil "Current active workspace.") +(defvar exwm-workspace-current-index 0 "Index of current active workspace.") (defsubst exwm-workspace--position (frame) "Retrieve index of given FRAME in workspace list. @@ -107,8 +109,6 @@ NIL if FRAME is not a workspace" sequence "")) sequence))))) -(defvar exwm-workspace--current nil "Current active workspace.") -(defvar exwm-workspace-current-index 0 "Index of current active workspace.") (defvar exwm-workspace-show-all-buffers nil "Non-nil to show buffers on other workspaces.") (defvar exwm-workspace--minibuffer nil |