From c0dc580806b28a7ff281026203e4e6dcdaaccb5d Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Mon, 1 Jun 2020 22:23:44 +0200 Subject: [PATCH] Added hints to avoid some byte compilation warnings. --- elpher.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/elpher.el b/elpher.el index b2db2b4..bc74a05 100644 --- a/elpher.el +++ b/elpher.el @@ -894,6 +894,7 @@ to ADDRESS." (error "Cannot establish gemini connection: GnuTLS not available") (unless (< (elpher-address-port address) 65536) (error "Cannot establish gemini connection: port number > 65536")) + (defvar gnutls-verify-error) (condition-case nil (let* ((kill-buffer-query-functions nil) (gnutls-verify-error nil) ; We use the NSM for verification @@ -1255,7 +1256,7 @@ width defined by elpher-gemini-max-fill-width." (cons string selector-string-parts)))) (set-process-sentinel proc (lambda (_proc event) - (condition-case the-error + (condition-case _the-error (cond ((string-prefix-p "deleted" event)) ((string-prefix-p "open" event) -- 2.20.1