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

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

[nongnu] elpa/multiple-cursors c94eca5 254/434: Fix broken let binding


From: ELPA Syncer
Subject: [nongnu] elpa/multiple-cursors c94eca5 254/434: Fix broken let binding
Date: Sat, 7 Aug 2021 09:20:37 -0400 (EDT)

branch: elpa/multiple-cursors
commit c94eca57ae2120c017cf4d3ef09ef8bca7eb6695
Author: Magnar Sveen <magnars@gmail.com>
Commit: Magnar Sveen <magnars@gmail.com>

    Fix broken let binding
---
 multiple-cursors-core.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/multiple-cursors-core.el b/multiple-cursors-core.el
index f1aadd3..d073090 100644
--- a/multiple-cursors-core.el
+++ b/multiple-cursors-core.el
@@ -306,8 +306,8 @@ been remapped. And certain modes (cua comes to mind) will 
change their
 remapping based on state. So a command that changes the state will afterwards
 not be recognized through the command-remapping lookup."
   (unless mc--executing-command-for-fake-cursor
-    (let (cmd (or (command-remapping this-original-command)
-                  this-original-command))
+    (let ((cmd (or (command-remapping this-original-command)
+                   this-original-command)))
       (setq mc--this-command (and (not (eq cmd 'god-mode-self-insert))
                                   cmd)))))
 



reply via email to

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