emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/golden-ratio 007911d8a4 89/95: Merge pull request #62 from


From: ELPA Syncer
Subject: [nongnu] elpa/golden-ratio 007911d8a4 89/95: Merge pull request #62 from arbelt/persp-fix
Date: Thu, 7 Sep 2023 22:02:16 -0400 (EDT)

branch: elpa/golden-ratio
commit 007911d8a431b72670f5fe5f0e5b4380c2777a31
Merge: f5807212d3 d06170e2b7
Author: Roman Gonzalez <roman@users.noreply.github.com>
Commit: GitHub <noreply@github.com>

    Merge pull request #62 from arbelt/persp-fix
    
    fix for persp-switch-quick
---
 golden-ratio.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/golden-ratio.el b/golden-ratio.el
index 0b6103e62b..28a637d939 100644
--- a/golden-ratio.el
+++ b/golden-ratio.el
@@ -181,8 +181,8 @@ will prevent the window to be resized to the golden ratio."
   (when (or (memq this-command golden-ratio-extra-commands)
             (and (consp this-command) ; A lambda form.
                  (loop for com in golden-ratio-extra-commands
-                       thereis (or (memq com this-command)
-                                   (memq (car-safe com) this-command)))))
+                       thereis (or (member com this-command)
+                                   (member (car-safe com) this-command)))))
     ;; This is needed in emacs-25 to avoid this error from `recenter':
     ;; `recenter'ing a window that does not display current-buffer.
     ;; This doesn't happen in emacs-24.4 and previous versions.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]