Don't message about skipping known run-once commands

This commit is contained in:
Magnar Sveen 2012-07-02 08:13:51 +02:00
parent b60cbc3f56
commit 759391e04d

View File

@ -128,7 +128,8 @@ cursors."
(if (memq this-original-command mc--unsupported-cmds)
(message "%S is not supported with multiple cursors" this-original-command)
(if (not (memq this-original-command mc--cmds))
(message "Skipping %S" this-original-command)
(when (not (memq this-original-command mc--cmds-run-once))
(message "Skipping %S" this-original-command))
(mc/execute-command-for-all-fake-cursors this-original-command))))
(defun mc/remove-fake-cursors ()