1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

* lisp/emacs-lisp/macroexp.el (macroexp--compiler-macro): Soften message

Clarify that the error is "harmless".
This commit is contained in:
Stefan Monnier 2022-09-03 10:52:57 -04:00
parent d60e930d34
commit b01d529e8d

View file

@ -110,7 +110,8 @@ each clause."
(let ((symbols-with-pos-enabled t))
(apply handler form (cdr form)))
(error
(message "Compiler-macro error for %S: Handler: %S\n%S" (car form) handler err)
(message "Warning: Optimization failure for %S: Handler: %S\n%S"
(car form) handler err)
form)))
(defun macroexp--funcall-if-compiled (_form)