* lisp/emacs-lisp/macroexp.el: Don't hide backtrace
(macroexp--compiler-macro): Use condition-case-unless-debug.
This commit is contained in:
parent
2f65525774
commit
522acbf49c
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ each clause."
|
|||
clause)))
|
||||
|
||||
(defun macroexp--compiler-macro (handler form)
|
||||
(condition-case err
|
||||
(condition-case-unless-debug err
|
||||
(apply handler form (cdr form))
|
||||
(error
|
||||
(message "Compiler-macro error for %S: %S" (car form) err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue