From 560553b1fa2247b7e2b28dd2fe7f404040dacac6 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Fri, 13 Apr 2018 16:41:13 +0200 Subject: [PATCH] (url-http): Ensure that the referrer is all-ASCII * lisp/url/url-http.el (url-http): Ensure that the referrer is all-ASCII. --- lisp/url/url-http.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index bb3e76997a8..d45bb323b12 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -1291,7 +1291,7 @@ The return value of this function is the retrieval buffer." (buffer (or retry-buffer (generate-new-buffer (format " *http %s:%d*" (url-host url) (url-port url))))) - (referer (url-http--get-referer url))) + (referer (url-http--encode-string (url-http--get-referer url)))) (if (not connection) ;; Failed to open the connection for some reason (progn -- 2.39.5