From: Eli Zaretskii Date: Wed, 2 Oct 2019 15:24:03 +0000 (+0300) Subject: Fix a typo in url-http.el X-Git-Tag: emacs-27.0.90~1324 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=433dd77b4a4c52a98e1ce0438d6bd475cdb81f7b;p=emacs.git Fix a typo in url-http.el * lisp/url/url-http.el (url-http-parse-headers): Fix a typo. Reported by Mattias EngdegÄrd . --- diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 31c866bd664..0ea7e02ee7f 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -955,8 +955,8 @@ should be shown to the user." (url-mark-buffer-as-dead buffer) ;; Narrow the buffer for url-handle-content-transfer-encoding to ;; find only the headers relevant to this transaction. - (and (not (buffer-narrowed-p) - (mail-narrow-to-head))) + (and (not (buffer-narrowed-p)) + (mail-narrow-to-head)) (url-handle-content-transfer-encoding)) (url-http-debug "Finished parsing HTTP headers: %S" success) (widen)