Fix broken let binding

This commit is contained in:
Magnar Sveen 2013-08-24 20:38:49 +02:00
parent 725369c445
commit c94eca57ae

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 remapping based on state. So a command that changes the state will afterwards
not be recognized through the command-remapping lookup." not be recognized through the command-remapping lookup."
(unless mc--executing-command-for-fake-cursor (unless mc--executing-command-for-fake-cursor
(let (cmd (or (command-remapping this-original-command) (let ((cmd (or (command-remapping this-original-command)
this-original-command)) this-original-command)))
(setq mc--this-command (and (not (eq cmd 'god-mode-self-insert)) (setq mc--this-command (and (not (eq cmd 'god-mode-self-insert))
cmd))))) cmd)))))