emacs-diffs
[Top][All Lists]
Advanced

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

master c8a1af6: Avoid byte-compilation warning


From: Eli Zaretskii
Subject: master c8a1af6: Avoid byte-compilation warning
Date: Thu, 22 Jul 2021 05:15:48 -0400 (EDT)

branch: master
commit c8a1af6d3726ee57392dbea40ecca51c793224c4
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Avoid byte-compilation warning
    
    * test/src/buffer-tests.el (buffer-tests-inhibit-buffer-hooks):
    Avoid byte-compiler warning.  (Bug#49667)
---
 test/src/buffer-tests.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/src/buffer-tests.el b/test/src/buffer-tests.el
index 20f85c6..11f842e 100644
--- a/test/src/buffer-tests.el
+++ b/test/src/buffer-tests.el
@@ -1345,8 +1345,8 @@ with parameters from the *Messages* buffer modification."
             (add-hook 'kill-buffer-hook kbh nil t)
             (add-hook 'kill-buffer-query-functions kbqf nil t)
             (kill-buffer))
-          (with-temp-buffer)
-          (with-output-to-string)
+          (with-temp-buffer (ignore))
+          (with-output-to-string (ignore))
           (should-not run-bluh)
           (should-not run-kbh)
           (should-not run-kbqf)



reply via email to

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