diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-31 01:50:38 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-31 01:50:38 +0200 |
commit | 88d719e95b76ccb38e4a39b24729d5b3d9514118 (patch) | |
tree | d5d192036947b21cc62b17719b6f5257d4049625 /test/lisp/subr-tests.el | |
parent | 5b29f8cd98c014b4b3e5844ef128ba97e65ea036 (diff) | |
download | emacs-88d719e95b76ccb38e4a39b24729d5b3d9514118.tar.gz emacs-88d719e95b76ccb38e4a39b24729d5b3d9514118.tar.bz2 emacs-88d719e95b76ccb38e4a39b24729d5b3d9514118.zip |
; Silence byte-compiler in two tests
* test/lisp/subr-tests.el (test-print-unreadable-function):
* test/src/print-tests.el (test-print-unreadable-function-buffer):
Pacify byte-compiler.
Diffstat (limited to 'test/lisp/subr-tests.el')
-rw-r--r-- | test/lisp/subr-tests.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/subr-tests.el b/test/lisp/subr-tests.el index 08f08f04665..bc11e6f3c7d 100644 --- a/test/lisp/subr-tests.el +++ b/test/lisp/subr-tests.el @@ -1044,7 +1044,8 @@ final or penultimate step during initialization.")) ;; Check that problem with unwinding properly is fixed (bug#56773). (with-temp-buffer (let ((buf (current-buffer))) - (readablep (make-marker)) + (let ((_ (readablep (make-marker)))) nil) ; this `let' silences a + ; warning (should (eq buf (current-buffer)))))) (ert-deftest test-string-lines () |