diff options
| author | Stefan Monnier | 2012-06-14 23:20:42 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-06-14 23:20:42 -0400 |
| commit | a64a94eddd0d1a4568e0905dfa65f06eef030f09 (patch) | |
| tree | f927f8a89806c66071694ba4ef70ed886c1d13f9 | |
| parent | f38ea36d3d9415aeaf895ea7b439c41ee441c500 (diff) | |
| download | emacs-a64a94eddd0d1a4568e0905dfa65f06eef030f09.tar.gz emacs-a64a94eddd0d1a4568e0905dfa65f06eef030f09.zip | |
* macroexp.el (macroexp--compiler-macro): Fix paren typo.
| -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." | |||
| 98 | (condition-case err | 98 | (condition-case err |
| 99 | (apply handler form (cdr form)) | 99 | (apply handler form (cdr form)) |
| 100 | (error (message "Compiler-macro error for %S: %S" (car form) err) | 100 | (error (message "Compiler-macro error for %S: %S" (car form) err) |
| 101 | form)))) | 101 | form))) |
| 102 | 102 | ||
| 103 | (defun macroexp--expand-all (form) | 103 | (defun macroexp--expand-all (form) |
| 104 | "Expand all macros in FORM. | 104 | "Expand all macros in FORM. |