From f2547e056d6d66ee214ce3f8907e09e69cd90d21 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Sun, 2 Dec 2012 22:22:20 +0900 Subject: [PATCH] fix lazy-load-eval --- emacs.el | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/emacs.el b/emacs.el index 343ecad..c369377 100644 --- a/emacs.el +++ b/emacs.el @@ -106,16 +106,16 @@ found, otherwise returns nil." `(progn ,@(mapcar (lambda (f) (unless (fboundp f) - (progn + `(progn (message "Autoloaded function `%S' defined (%s)" - f - libpath) - `(autoload (quote ,f) - ,libname - ,(concat "Autoloaded function defined in \"" - libpath - "\".") - t)))) + (quote ,f) + ,libpath) + (autoload (quote ,f) + ,libname + ,(concat "Autoloaded function defined in \"" + libpath + "\".") + t)))) (or (eval functions) `(,(eval feature)))) (eval-after-load ,feature