Compare commits

...

2 Commits

Author SHA1 Message Date
Magnar Sveen
20e692ae03 Release 1.2.3 2013-08-24 20:39:37 +02:00
Magnar Sveen
de3306066a Fix broken let binding 2013-08-24 20:38:49 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -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)))))

View File

@ -1,2 +1,2 @@
(define-package "multiple-cursors" "1.2.1"
(define-package "multiple-cursors" "1.2.3"
"Multiple cursors for Emacs.")