mlf176f2 pushed a commit to branch externals/ergoemacs-mode in repository elpa.
commit f4ad8b2042bd63b620360f3d3885e9640169be21 Author: Matthew L. Fidler <[email protected]> Date: Sat Jun 21 23:08:39 2014 -0500 Fix ergoemacs-read-key-lookup-get-ret---universal --- ergoemacs-shortcuts.el | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ergoemacs-shortcuts.el b/ergoemacs-shortcuts.el index 174f37d..5646bef 100644 --- a/ergoemacs-shortcuts.el +++ b/ergoemacs-shortcuts.el @@ -697,10 +697,10 @@ In addition, when the function is called: (boundp 'first-type)) (if (not (string-match "^ergoemacs-\\(.*\\)-universal-argument" tmp)) (setq type 'normal - first-type 'normal)) - (setq tmp (intern (match-string 1 tmp))) - (setq type tmp - first-type tmp)) + first-type 'normal) + (setq tmp (intern (match-string 1 tmp))) + (setq type tmp + first-type tmp))) ret)) (defun ergoemacs-read-key-lookup-get-ret (fn) @@ -1537,7 +1537,7 @@ This command also ignores anything that remaps to FUNCTION, by setting changed by setting DONT-IGNORE-COMMANDS to t. When KEYMAP is defined, `ergoemacs-this-command' is not included -in the ignored commands. +in the ignored commands.i Also this ignores anything that is changed in the global keymap.
