summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/gv.el
diff options
context:
space:
mode:
authorMattias Engdegård <mattiase@acm.org>2022-06-30 14:55:45 +0200
committerMattias Engdegård <mattiase@acm.org>2022-06-30 15:08:02 +0200
commita68508c10b0ab60e23d13164bd6c83e38ce36f93 (patch)
treea0b1acb4dfc56061550101c37f87bd07058b6477 /lisp/emacs-lisp/gv.el
parentf819882edcb3724823a962d16863be3f5a76d634 (diff)
downloademacs-a68508c10b0ab60e23d13164bd6c83e38ce36f93.tar.gz
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/gv.el')
-rw-r--r--lisp/emacs-lisp/gv.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el
index 7cfa1f2dadc..54ddc7ac757 100644
--- a/lisp/emacs-lisp/gv.el
+++ b/lisp/emacs-lisp/gv.el
@@ -602,7 +602,7 @@ This is like the `*' operator of the C language.
REF must have been previously obtained with `gv-ref'."
(funcall (car ref)))
;; Don't use `declare' because it seems to introduce circularity problems:
-;; Warning: Eager macro-expansion skipped due to cycle:
+;; Eager macro-expansion skipped due to cycle:
;; … => (load "gv.el") => (macroexpand-all (defsubst gv-deref …)) => (macroexpand (defun …)) => (load "gv.el")
(gv-define-setter gv-deref (v ref) `(funcall (cdr ,ref) ,v))