diff options
author | Vincent Belaïche <vincentb1@users.sourceforge.net> | 2016-07-28 18:12:50 +0200 |
---|---|---|
committer | Vincent Belaïche <vincentb1@users.sourceforge.net> | 2016-07-28 18:12:50 +0200 |
commit | 90ab699c4f281d0c9a9b71f3eb4c8493d00fcf4f (patch) | |
tree | df3235d89ee8e4d32571b8a8521f75f7576913c2 /lisp/emacs-lisp/macroexp.el | |
parent | 41b28dea8587c13b0bc59c1ec70b65afab3aeeca (diff) | |
parent | ec359399a47f852b4d022a30245449438e349193 (diff) | |
download | emacs-90ab699c4f281d0c9a9b71f3eb4c8493d00fcf4f.tar.gz emacs-90ab699c4f281d0c9a9b71f3eb4c8493d00fcf4f.tar.bz2 emacs-90ab699c4f281d0c9a9b71f3eb4c8493d00fcf4f.zip |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lisp/emacs-lisp/macroexp.el')
-rw-r--r-- | lisp/emacs-lisp/macroexp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el index ed4d6e49a93..310ca29e9a1 100644 --- a/lisp/emacs-lisp/macroexp.el +++ b/lisp/emacs-lisp/macroexp.el @@ -261,7 +261,7 @@ Assumes the caller has bound `macroexpand-all-environment'." (format "%s quoted with ' rather than with #'" (list 'lambda (nth 1 f) '...)) (macroexp--expand-all `(,fun ,arg1 ,f . ,args)))) - (`(funcall (,(or 'quote 'function) ,(and f (pred symbolp)) . ,_) . ,args) + (`(funcall #',(and f (pred symbolp)) . ,args) ;; Rewrite (funcall #'foo bar) to (foo bar), in case `foo' ;; has a compiler-macro. (macroexp--expand-all `(,f . ,args))) |