From: Lars Ingebrigtsen Date: Fri, 13 Apr 2018 14:41:13 +0000 (+0200) Subject: (url-http): Ensure that the referrer is all-ASCII X-Git-Tag: emacs-27.0.90~5250 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=560553b1fa2247b7e2b28dd2fe7f404040dacac6;p=emacs.git (url-http): Ensure that the referrer is all-ASCII * lisp/url/url-http.el (url-http): Ensure that the referrer is all-ASCII. --- 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