aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Pluim2021-09-21 10:20:10 +0200
committerRobert Pluim2021-09-21 13:56:34 +0200
commit0493dd36dc8ae6afa99ef27fb0418f4be95bcf75 (patch)
treec529c36954712cbf9be51384aa2f7be6c3e7c63a
parent5b962a7ad8d0acfe40a41ce139059b9c8e46f666 (diff)
downloademacs-0493dd36dc8ae6afa99ef27fb0418f4be95bcf75.tar.gz
emacs-0493dd36dc8ae6afa99ef27fb0418f4be95bcf75.zip
Silence byte-compiler warning for network-stream-tests.el
The api specifically requires a symbol here, so we can't just replace nowait with nil. * test/lisp/net/network-stream-tests.el (open-gnutls-stream-old-api-wait): Add explicit value for nowait to silence byte-compiler warning due to Bug#47080.
-rw-r--r--test/lisp/net/network-stream-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/net/network-stream-tests.el b/test/lisp/net/network-stream-tests.el
index 4a0b23dd26f..8f5bddb71fa 100644
--- a/test/lisp/net/network-stream-tests.el
+++ b/test/lisp/net/network-stream-tests.el
@@ -611,7 +611,7 @@
611 (skip-unless (gnutls-available-p)) 611 (skip-unless (gnutls-available-p))
612 (let ((server (make-tls-server 44667)) 612 (let ((server (make-tls-server 44667))
613 (times 0) 613 (times 0)
614 nowait 614 (nowait nil) ; Workaround Bug#47080
615 proc status) 615 proc status)
616 (unwind-protect 616 (unwind-protect
617 (progn 617 (progn