From 8769309fbf1e5f59e37a08a949603ae3662e547d Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 18 Mar 2015 05:46:25 -0500 Subject: [PATCH] Remove a use of macroexpand --- lisp/use-package/use-package.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.39.2