From: Tim Vaughan Date: Fri, 22 May 2020 11:11:21 +0000 (+0200) Subject: Work around Doom emacs tls problems. X-Git-Tag: v2.7.6~1 X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=commitdiff_plain;h=ca32cd8d0df5a6041ee4a2920309b8adc0b63d2e Work around Doom emacs tls problems. --- diff --git a/elpher.el b/elpher.el index f54d183..e508c61 100644 --- a/elpher.el +++ b/elpher.el @@ -547,6 +547,7 @@ to ADDRESS." (error "Cannot retrieve gopher selector: port number > 65536")) (condition-case nil (let* ((kill-buffer-query-functions nil) + (gnutls-verify-error nil) ; We use the NSM for verification (port (elpher-address-port address)) (host (elpher-address-host address)) (selector-string-parts nil) @@ -875,6 +876,7 @@ to ADDRESS." (error "Cannot establish gemini connection: port number > 65536")) (condition-case nil (let* ((kill-buffer-query-functions nil) + (gnutls-verify-error nil) ; We use the NSM for verification (port (elpher-address-port address)) (host (elpher-address-host address)) (response-string-parts nil) @@ -954,7 +956,7 @@ that the response was malformed." (meta (string-trim (substring header 2)))) (list code meta body)) (error "Malformed response: No response status found in header %s" header))) - (error "Malformed response: No CRLF-delimited header found")))) + (error "Malformed response: No CRLF-delimited header found in response %s" response)))) (defun elpher-process-gemini-response (response-string renderer) "Process the gemini response RESPONSE-STRING and pass the result to RENDERER."