summaryrefslogtreecommitdiff
path: root/lisp/url
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2019-10-02 18:24:03 +0300
committerEli Zaretskii <eliz@gnu.org>2019-10-02 18:24:03 +0300
commit433dd77b4a4c52a98e1ce0438d6bd475cdb81f7b (patch)
tree044f8ca0317fafa871b4cfd05a65b069ede1bf85 /lisp/url
parent77207ca84184fc01428154c318b21c70ad150c01 (diff)
downloademacs-433dd77b4a4c52a98e1ce0438d6bd475cdb81f7b.tar.gz
Fix a typo in url-http.el
* lisp/url/url-http.el (url-http-parse-headers): Fix a typo. Reported by Mattias EngdegÄrd <mattiase@acm.org>.
Diffstat (limited to 'lisp/url')
-rw-r--r--lisp/url/url-http.el4
1 files changed, 2 insertions, 2 deletions
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)