diff options
Diffstat (limited to 'lisp/url')
-rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/url/url-http.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 19f39265251..6dac2389e71 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,8 @@ +2005-01-22 Klaus Straubinger <KSNetz@Arcor.DE> (tiny change) + + * url-http.el (url-http-parse-headers) <302>: Reset url-http-data + to nil, like for the 303 response. + 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca> * url.el (url-retrieve-synchronously): Use accept-process-output rather 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." (url-http-debug "Converting `%s' request to `GET' because of REDIRECT(%d)" url-http-method url-http-response-status) (setq url-http-method "GET" - url-request-data nil))) + url-http-data nil))) (303 ;; The response to the request can be found under a different ;; URI and SHOULD be retrieved using a GET method on that |