]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove a use of macroexpand
authorJohn Wiegley <johnw@newartisans.com>
Wed, 18 Mar 2015 10:46:25 +0000 (05:46 -0500)
committerJohn Wiegley <johnw@newartisans.com>
Wed, 18 Mar 2015 10:46:25 +0000 (05:46 -0500)
lisp/use-package/use-package.el

index 2bbc01b25934e03e1a1e05101be3bbd5f6409077..e2054d11978e7cabd4f5794037a557cab489c2e3 100644 (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."