aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2005-01-22 10:52:28 +0000
committerEli Zaretskii2005-01-22 10:52:28 +0000
commitcfdd484fc73d924c8e5d7061544542a582be29aa (patch)
treea75bc1916a091c625a23fd7c7cecccee0c3f5657
parentcc7fe910c26e0bee80f5d843824f74b7bd5bb57b (diff)
downloademacs-cfdd484fc73d924c8e5d7061544542a582be29aa.tar.gz
emacs-cfdd484fc73d924c8e5d7061544542a582be29aa.zip
(url-http-parse-headers): Reset url-http-data to nil,
like for the 303 response.
-rw-r--r--lisp/url/url-http.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 2608a85963a..3a0fbf6ecd6 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -459,7 +459,7 @@ should be shown to the user."
459 (url-http-debug "Converting `%s' request to `GET' because of REDIRECT(%d)" 459 (url-http-debug "Converting `%s' request to `GET' because of REDIRECT(%d)"
460 url-http-method url-http-response-status) 460 url-http-method url-http-response-status)
461 (setq url-http-method "GET" 461 (setq url-http-method "GET"
462 url-request-data nil))) 462 url-http-data nil)))
463 (303 463 (303
464 ;; The response to the request can be found under a different 464 ;; The response to the request can be found under a different
465 ;; URI and SHOULD be retrieved using a GET method on that 465 ;; URI and SHOULD be retrieved using a GET method on that