Correctly treat progn contents as toplevel forms when byte compiling
This commit is contained in:
parent
0c8d94555c
commit
985c035f2d
5 changed files with 111 additions and 24 deletions
|
@ -97,7 +97,10 @@ each clause."
|
|||
(defun macroexp--compiler-macro (handler form)
|
||||
(condition-case err
|
||||
(apply handler form (cdr form))
|
||||
(error (message "Compiler-macro error for %S: %S" (car form) err)
|
||||
(error
|
||||
(message "--------------------------------------------------")
|
||||
(backtrace)
|
||||
(message "Compiler-macro error for %S: %S" (car form) err)
|
||||
form)))
|
||||
|
||||
(defun macroexp--funcall-if-compiled (_form)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue