diff options
author | James <me@j4m3s.eu> | 2022-10-23T17·34+0200 |
---|---|---|
committer | Adrián Medraño Calvo <adrian@medranocalvo.com> | 2022-10-29T00·00+0000 |
commit | 0a2c03ed597a27ff1ab06751b39618018f6d9deb (patch) | |
tree | c37ed8633e7b9d4f164f9b1274de706097e16c53 /exwm-workspace.el | |
parent | e43bd782580fc7f2aa7f5f92da1c5d7c992b6d1c (diff) |
Fix logging order in exwm-workspace--set-active
* exwm-workspace.el (exwm-workspace--set-active): Swap logging arguments to match message. Copyright-paperwork-exempt: yes
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 fc68e1b07053..12319958cad1 100644 --- a/exwm-workspace.el +++ b/exwm-workspace.el @@ -444,7 +444,7 @@ NIL if FRAME is not a workspace" (defun exwm-workspace--set-active (frame active) "Make frame FRAME active on its monitor." - (exwm--log "active=%s; frame=%s" frame active) + (exwm--log "active=%s; frame=%s" active frame) (set-frame-parameter frame 'exwm-active active) (if active (exwm-workspace--set-fullscreen frame) |