diff options
author | John Wiegley <johnw@newartisans.com> | 2015-03-18 05:46:25 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2015-03-18 05:46:25 -0500 |
commit | 8769309fbf1e5f59e37a08a949603ae3662e547d (patch) | |
tree | 5af20f436104de1b1d3f10b89bdb7480f15f1d0a /lisp/use-package | |
parent | 658d103b70c63ba50b7f5438e7c42f1af0770090 (diff) | |
download | emacs-8769309fbf1e5f59e37a08a949603ae3662e547d.tar.gz emacs-8769309fbf1e5f59e37a08a949603ae3662e547d.tar.bz2 emacs-8769309fbf1e5f59e37a08a949603ae3662e547d.zip |
Remove a use of macroexpand
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/use-package.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." |