diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2018-04-13 16:41:13 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2018-04-13 16:41:13 +0200 |
commit | 560553b1fa2247b7e2b28dd2fe7f404040dacac6 (patch) | |
tree | 02dae5de819e844090fe1a6d1cbb31a5fea3e122 | |
parent | a53bac31426397fcf9e1a52fecb9a1e281492867 (diff) | |
download | emacs-560553b1fa2247b7e2b28dd2fe7f404040dacac6.tar.gz |
(url-http): Ensure that the referrer is all-ASCII
* lisp/url/url-http.el (url-http): Ensure that the referrer is all-ASCII.
-rw-r--r-- | lisp/url/url-http.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 |