diff options
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 () |