diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-06-14 23:20:42 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-06-14 23:20:42 -0400 |
commit | a64a94eddd0d1a4568e0905dfa65f06eef030f09 (patch) | |
tree | f927f8a89806c66071694ba4ef70ed886c1d13f9 /lisp/emacs-lisp | |
parent | f38ea36d3d9415aeaf895ea7b439c41ee441c500 (diff) | |
download | emacs-a64a94eddd0d1a4568e0905dfa65f06eef030f09.tar.gz |
* macroexp.el (macroexp--compiler-macro): Fix paren typo.
Diffstat (limited to 'lisp/emacs-lisp')
-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 85e9b073158..95fe43a34a2 100644 --- a/lisp/emacs-lisp/macroexp.el +++ b/lisp/emacs-lisp/macroexp.el @@ -98,7 +98,7 @@ each clause." (condition-case err (apply handler form (cdr form)) (error (message "Compiler-macro error for %S: %S" (car form) err) - form)))) + form))) (defun macroexp--expand-all (form) "Expand all macros in FORM. |