diff options
author | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2021-11-02T00·00+0000 |
---|---|---|
committer | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2021-11-02T00·00+0000 |
commit | 5098708c924718b427c258e1757ae1dc39d8278a (patch) | |
tree | 0c506fb40c8531fc34eb919101ca390b11ee9bac /exwm-workspace.el | |
parent | 571ca227e7857b5fd95f4f3211d471083d69ec32 (diff) |
Correct wrong variable name
* exwm-workspace.el (exwm-workspace--on-delete-frame): Correct misstyped name of variable `exwm-workspace--client-p-hash-table'.
Diffstat (limited to 'exwm-workspace.el')
-rw-r--r-- | exwm-workspace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exwm-workspace.el b/exwm-workspace.el index 273ead7f0158..c513347119a2 100644 --- a/exwm-workspace.el +++ b/exwm-workspace.el @@ -1470,7 +1470,7 @@ the next workspace." (let ((exwm-workspace--create-silently t)) (make-frame))) (exwm-workspace--remove-frame-as-workspace frame) - (remhash frame exwm--client-p-hash-table)))) + (remhash frame exwm-workspace--client-p-hash-table)))) (defun exwm-workspace--on-after-make-frame (frame) "Hook run upon `make-frame' that configures FRAME as a workspace." |