aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThien-Thi Nguyen2005-01-03 16:56:28 +0000
committerThien-Thi Nguyen2005-01-03 16:56:28 +0000
commite817f9a24842f7f949bd82d78d92fa86d139fd81 (patch)
tree17936896f05eeb13a66b3a2582780b550250d14a
parente169f939a59dee9a773116c9a6e40f6fb25b2511 (diff)
downloademacs-e817f9a24842f7f949bd82d78d92fa86d139fd81.tar.gz
emacs-e817f9a24842f7f949bd82d78d92fa86d139fd81.zip
(url-http-handle-authentication): Don't kill the current buffer.
-rw-r--r--lisp/url/ChangeLog5
-rw-r--r--lisp/url/url-http.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 9bb5ef1c3e5..b3486e19acd 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,8 @@
12005-01-03 Klaus Straubinger <ksnetz@arcor.de> (tiny change)
2
3 * url-http.el (url-http-handle-authentication):
4 Don't kill the current buffer.
5
12004-12-11 Stefan Monnier <monnier@iro.umontreal.ca> 62004-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * url-handlers.el: Don't `require' everything eagerly. 8 * url-handlers.el: Don't `require' everything eagerly.
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 8a7269e6bea..2608a85963a 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -322,8 +322,8 @@ This allows us to use `mail-fetch-field', etc."
322 (let ((url-request-method url-http-method) 322 (let ((url-request-method url-http-method)
323 (url-request-data url-http-data) 323 (url-request-data url-http-data)
324 (url-request-extra-headers url-http-extra-headers)) 324 (url-request-extra-headers url-http-extra-headers))
325 (url-retrieve url url-callback-function url-callback-arguments)))) 325 (url-retrieve url url-callback-function
326 (kill-buffer (current-buffer))))) 326 url-callback-arguments)))))))
327 327
328(defun url-http-parse-response () 328(defun url-http-parse-response ()
329 "Parse just the response code." 329 "Parse just the response code."