diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2022-06-30 14:55:45 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2022-06-30 15:08:02 +0200 |
commit | a68508c10b0ab60e23d13164bd6c83e38ce36f93 (patch) | |
tree | a0b1acb4dfc56061550101c37f87bd07058b6477 /lisp/emacs-lisp/macroexp.el | |
parent | f819882edcb3724823a962d16863be3f5a76d634 (diff) | |
download | emacs-a68508c10b0ab60e23d13164bd6c83e38ce36f93.tar.gz emacs-a68508c10b0ab60e23d13164bd6c83e38ce36f93.tar.bz2 emacs-a68508c10b0ab60e23d13164bd6c83e38ce36f93.zip |
Don't say that macro-expansion error is a warning
* lisp/emacs-lisp/gv.el:
* lisp/emacs-lisp/macroexp.el (internal-macroexpand-for-load): Since
eager macro-expansion errors are no longer warnings, don't say so.
Diffstat (limited to 'lisp/emacs-lisp/macroexp.el')
-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 0fb4cf680a8..4db50bbaa9b 100644 --- a/lisp/emacs-lisp/macroexp.el +++ b/lisp/emacs-lisp/macroexp.el @@ -796,7 +796,7 @@ test of free variables in the following ways: (if (eq (car-safe (car bt)) 'macroexpand-all) (setq bt (cdr bt))) (if macroexp--debug-eager (debug 'eager-macroexp-cycle) - (error "Warning: Eager macro-expansion skipped due to cycle:\n %s" + (error "Eager macro-expansion skipped due to cycle:\n %s" (mapconcat #'prin1-to-string (nreverse bt) " => "))) (push 'skip macroexp--pending-eager-loads) form)) |