emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/ergoemacs-mode f5e01fd: Remove redundant require


From: Stefan Monnier
Subject: [elpa] externals/ergoemacs-mode f5e01fd: Remove redundant require
Date: Fri, 21 Apr 2017 11:21:58 -0400 (EDT)

branch: externals/ergoemacs-mode
commit f5e01fd5931c78a671de18f14d69b855e23eaf0a
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    Remove redundant require
---
 ergoemacs-macros.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/ergoemacs-macros.el b/ergoemacs-macros.el
index ddde13a..9e18b61 100644
--- a/ergoemacs-macros.el
+++ b/ergoemacs-macros.el
@@ -126,17 +126,17 @@ installing the original keymap above the ergoemacs-mode 
installed keymap.
          (ergoemacs-emulations)))))
 
 ;; This shouldn't be called at run-time; This fixes the byte-compile warning.
-(fset 'ergoemacs-theme-component--parse
-      #'(lambda(keys-and-body &optional skip-first)
-          "Parse KEYS-AND-BODY, optionally skipping the name and
+(defun ergoemacs-theme-component--parse
+    (keys-and-body &optional skip-first)
+  "Parse KEYS-AND-BODY, optionally skipping the name and
 documentation with SKIP-FIRST.
 
 Uses `ergoemacs-theme-component--parse-keys-and-body' and
   `ergoemacs-theme-component--parse-remaining'."
-          (ergoemacs-theme-component--parse-keys-and-body
-           keys-and-body
-           'ergoemacs-theme-component--parse-remaining
-           skip-first)))
+  (ergoemacs-theme-component--parse-keys-and-body
+   keys-and-body
+   'ergoemacs-theme-component--parse-remaining
+   skip-first))
 
 ;;;###autoload
 (defun ergoemacs-theme-component--parse-remaining (remaining)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]