1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

Remove a use of macroexpand

This commit is contained in:
John Wiegley 2015-03-18 05:46:25 -05:00
parent 658d103b70
commit 8769309fbf

View File

@ -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."