From: John Wiegley Date: Wed, 18 Mar 2015 10:46:25 +0000 (-0500) Subject: Remove a use of macroexpand X-Git-Tag: emacs-29.0.90~1306^2~15^2~367 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8769309fbf;p=emacs.git Remove a use of macroexpand --- diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 2bbc01b2593..e2054d11978 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -184,7 +184,7 @@ ARGS is a list of forms, so `((foo))' if only `foo' is being called." "Given a list of forms, return it wrapped in `progn'." (unless (listp (car args)) (use-package-error (concat label " wants a sexp or list of sexps"))) - (mapcar #'macroexpand args)) + args) (defsubst use-package-normalize-value (label arg) "Normalize a value."