aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/url/url-http.el8
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 306b36ae951..0e6f5d3694b 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -310,14 +310,10 @@ The string is based on `url-privacy-level' and `url-user-agent'."
310 ;; We used to concat directly, but if one of the strings happens 310 ;; We used to concat directly, but if one of the strings happens
311 ;; to being multibyte (even if it only contains pure ASCII) then 311 ;; to being multibyte (even if it only contains pure ASCII) then
312 ;; every string gets converted with `string-MAKE-multibyte' which 312 ;; every string gets converted with `string-MAKE-multibyte' which
313 ;; turns the 127-255 codes into things like latin-1 accented chars 313 ;; turns the 127-255 codes into things like latin-1 accented chars.
314 ;; (it would work right if it used `string-TO-multibyte' instead).
315 ;; So to avoid the problem we force every string to be unibyte. 314 ;; So to avoid the problem we force every string to be unibyte.
316 (mapconcat 315 (mapconcat
317 ;; FIXME: Instead of `string-AS-unibyte' we'd want 316 'string-to-unibyte
318 ;; `string-to-unibyte', so as to properly signal an error if one
319 ;; of the strings contains a multibyte char.
320 'string-as-unibyte
321 (delq nil 317 (delq nil
322 (list 318 (list
323 ;; The request 319 ;; The request