mlf176f2 pushed a commit to branch externals/ergoemacs-mode in repository elpa.
commit 4493d4fc108d2b6543ae6b22eed7a6bd7b912156 Author: Matthew L. Fidler <[email protected]> Date: Tue Jun 17 08:16:45 2014 -0500 move misplaced function --- ergoemacs-shortcuts.el | 6 ------ ergoemacs-translate.el | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ergoemacs-shortcuts.el b/ergoemacs-shortcuts.el index dafee9a..3920b5e 100644 --- a/ergoemacs-shortcuts.el +++ b/ergoemacs-shortcuts.el @@ -1359,12 +1359,6 @@ no translation listed." "C-x" "C-c" "ESC" "<escape>" "<remap>")) -(defun ergoemacs-setup-keys-for-layout (layout &optional base-layout) - "Setup keys based on a particular LAYOUT. All the keys are based on QWERTY layout." - (ergoemacs-setup-translation layout base-layout) - ;; Set appropriate mode-line indicator - (ergoemacs-mode-line)) - (defvar ergoemacs-extract-map-hash (make-hash-table :test 'equal)) (defvar ergoemacs-command-shortcuts-hash (make-hash-table :test 'equal) diff --git a/ergoemacs-translate.el b/ergoemacs-translate.el index 34ba767..f619e1d 100644 --- a/ergoemacs-translate.el +++ b/ergoemacs-translate.el @@ -945,6 +945,12 @@ and `ergoemacs-pretty-key' descriptions. "<insert>" "<S-insert>" "<deletechar>" "<S-deletechar>")))))) +(defun ergoemacs-setup-keys-for-layout (layout &optional base-layout) + "Setup keys based on a particular LAYOUT. All the keys are based on QWERTY layout." + (ergoemacs-setup-translation layout base-layout) + ;; Set appropriate mode-line indicator + (ergoemacs-mode-line)) + (defvar ergoemacs-kbd-hash (make-hash-table :test 'equal)) ;; This is called so frequently make a hash-table of the results.
