emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 90dccb0f00: Fix edebug-tests test failure after prin1 change


From: Lars Ingebrigtsen
Subject: master 90dccb0f00: Fix edebug-tests test failure after prin1 change
Date: Tue, 17 May 2022 04:10:07 -0400 (EDT)

branch: master
commit 90dccb0f00f684f63ab117a826a88a8e939b212b
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix edebug-tests test failure after prin1 change
    
    * lisp/emacs-lisp/ert-x.el (ert--make-print-advice): Fix test
    failures in edebug-tests.
---
 lisp/emacs-lisp/ert-x.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/ert-x.el b/lisp/emacs-lisp/ert-x.el
index c42ce09a1c..6fe1ade7a0 100644
--- a/lisp/emacs-lisp/ert-x.el
+++ b/lisp/emacs-lisp/ert-x.el
@@ -338,7 +338,8 @@ unless the output is going to the echo area (when 
PRINTCHARFUN is
 t or PRINTCHARFUN is nil and `standard-output' is t).  If the
 output is destined for the echo area, the advice function will
 convert it to a string and pass it to COLLECTOR first."
-  (lambda (func object &optional printcharfun)
+  ;;; FIXME: Pass on OVERRIDES.
+  (lambda (func object &optional printcharfun _overrides)
     (if (not (eq t (or printcharfun standard-output)))
         (funcall func object printcharfun)
       (funcall collector (with-output-to-string



reply via email to

[Prev in Thread] Current Thread [Next in Thread]