mlf176f2 pushed a commit to branch externals/ergoemacs-mode in repository elpa.
commit a050eb6b1af6f33478ce73a9b1f4961aff7c3a9e Author: Matthew L. Fidler <[email protected]> Date: Thu Jun 19 07:06:57 2014 -0500 Removed check for saved-overriding-map --- ergoemacs-mode.el | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ergoemacs-mode.el b/ergoemacs-mode.el index 98a851d..5918a79 100644 --- a/ergoemacs-mode.el +++ b/ergoemacs-mode.el @@ -752,10 +752,10 @@ These hooks are deferred to make sure `this-command' is set appropriately.") (interactive-form ergoemacs-real-key-binding) (error nil)) (setq this-command ergoemacs-real-key-binding)))) - (when (and - (or (not (boundp 'saved-overriding-map)) (eq saved-overriding-map t)) - (not unread-command-events)) - (ergoemacs-install-shortcuts-up)))) + ;; Used to check for `saved-overriding-map', but changed + ;; in emacs 24.4, and `ergoemacs-mode' deals with + ;; universal functions independent of emacs... + (ergoemacs-install-shortcuts-up))) (error nil))) (unless (ergoemacs-smart-function-p this-command) (run-hooks 'ergoemacs-pre-command-hook))
