diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-13 13:11:46 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-13 13:11:46 +0200 |
commit | 5e47ec95118c06dd66cd488ad25775d801d75c0c (patch) | |
tree | 882d6f22179a6b3c8fd1727c8d213bc26ebc9eca /lisp/url | |
parent | ba0871bef1e7d321f1124a6ad20e9be158a976dd (diff) | |
download | emacs-5e47ec95118c06dd66cd488ad25775d801d75c0c.tar.gz emacs-5e47ec95118c06dd66cd488ad25775d801d75c0c.tar.bz2 emacs-5e47ec95118c06dd66cd488ad25775d801d75c0c.zip |
; * lisp/url/url-http.el (url-http-parse-headers): Fix typo.
Diffstat (limited to 'lisp/url')
-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 16c3a6a1e62..a281774ed83 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -698,7 +698,7 @@ should be shown to the user." ;; gives the URI of the proxy. The recipient is expected ;; to repeat this single request via the proxy. 305 ;; responses MUST only be generated by origin servers. - (error "Redirection thru a proxy server not supported: %s" + (error "Redirection through a proxy server not supported: %s" redirect-uri)) (_ ;; Treat everything like '300' |