diff options
author | Steven Allen <steven@stebalien.com> | 2024-01-23T22·41-0800 |
---|---|---|
committer | Daniel Mendler <mail@daniel-mendler.de> | 2024-01-24T05·05+0100 |
commit | 2bb9a5787ea5b15c8fe4e7c461eb99b412363a16 (patch) | |
tree | 4d390afdbb84052cc1278d8a5f58472b6853c4d5 | |
parent | 0e365a00587b961b83de54206a5dc058adadfddf (diff) |
Use '=' instead of 'eq' to compare numbers.
* exwm.el (exwm--update-desktop): * exwm-layout.el (exwm-layout--hide): Use `=` instead of `eq` for numeric comparison.
-rw-r--r-- | exwm-layout.el | 3 | ||||
-rw-r--r-- | exwm.el | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/exwm-layout.el b/exwm-layout.el index 47ccf5c519af..8649c11ffd42 100644 --- a/exwm-layout.el +++ b/exwm-layout.el @@ -156,7 +156,8 @@ See variable `exwm-layout-auto-iconify'." (with-current-buffer (exwm--id->buffer id) (unless (or (exwm-layout--iconic-state-p) (and exwm--floating-frame - (eq 4294967295. exwm--desktop))) + exwm--desktop + (= 4294967295. exwm--desktop))) (exwm--log "Hide #x%x" id) (when exwm--floating-frame (let* ((container (frame-parameter exwm--floating-frame diff --git a/exwm.el b/exwm.el index bf074b6f9ffa..c4900eab48ca 100644 --- a/exwm.el +++ b/exwm.el @@ -176,7 +176,7 @@ Argument XWIN contains the X window of the `exwm-mode' buffer." (when reply (setq desktop (slot-value reply 'value)) (cond - ((eq desktop 4294967295.) + ((and desktop (= desktop 4294967295.)) (unless (or (not exwm--floating-frame) (eq exwm--frame exwm-workspace--current) (and exwm--desktop |