mlf176f2 pushed a commit to branch externals/ergoemacs-mode in repository elpa.
commit 0bf12f5f4d943d36109b7ee0bd9bcf13e1e26278 Author: Matthew L. Fidler <[email protected]> Date: Tue Jun 17 23:14:09 2014 +0800 Remove cl dependence for ergoemacs-theme-engine.el --- ergoemacs-theme-engine.el | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ergoemacs-theme-engine.el b/ergoemacs-theme-engine.el index 4ee7c69..8bb3856 100644 --- a/ergoemacs-theme-engine.el +++ b/ergoemacs-theme-engine.el @@ -1041,7 +1041,8 @@ Assumes maps are orthogonal." (dolist (map map-list) (when (ergoemacs-theme-component-maps-p map) (setq ret (ergoemacs-get-hooks map match ret keymaps)))) - (setq final (remove-duplicates ret)) + (dolist (item ret) + (pushnew item final :test 'equal)) (puthash (list match keymaps) final hooks)) final)))
