diff options
| author | Magnus Henoch | 2006-10-28 14:51:40 +0000 |
|---|---|---|
| committer | Magnus Henoch | 2006-10-28 14:51:40 +0000 |
| commit | ced20bfb689eb74b0353c0437f77d4dd3084ab9e (patch) | |
| tree | 0aa5bd4f4d73affea1de153224ca6b08ed025888 | |
| parent | 08c851609f434e3550f7f865ca333db5b78e1ce0 (diff) | |
| download | emacs-ced20bfb689eb74b0353c0437f77d4dd3084ab9e.tar.gz emacs-ced20bfb689eb74b0353c0437f77d4dd3084ab9e.zip | |
(url-http-parse-headers): Fix misplaced paren.
| -rw-r--r-- | lisp/url/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/url/url-http.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 60d287896dd..d0df620c870 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-10-28 Magnus Henoch <mange@freemail.hu> | ||
| 2 | |||
| 3 | * url-http.el (url-http-parse-headers): Fix misplaced paren. | ||
| 4 | |||
| 1 | 2006-10-27 Magnus Henoch <mange@freemail.hu> | 5 | 2006-10-27 Magnus Henoch <mange@freemail.hu> |
| 2 | 6 | ||
| 3 | * url-http.el (url-http-mark-connection-as-free): Verify that | 7 | * url-http.el (url-http-mark-connection-as-free): Verify that |
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index cd09df3cb4c..181a4b8db9a 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el | |||
| @@ -534,8 +534,8 @@ should be shown to the user." | |||
| 534 | (set (make-local-variable 'url-redirect-buffer) | 534 | (set (make-local-variable 'url-redirect-buffer) |
| 535 | (url-retrieve-internal | 535 | (url-retrieve-internal |
| 536 | redirect-uri url-callback-function | 536 | redirect-uri url-callback-function |
| 537 | url-callback-arguments) | 537 | url-callback-arguments)) |
| 538 | (url-mark-buffer-as-dead (current-buffer))))))) | 538 | (url-mark-buffer-as-dead (current-buffer)))))) |
| 539 | (4 ; Client error | 539 | (4 ; Client error |
| 540 | ;; 400 Bad Request | 540 | ;; 400 Bad Request |
| 541 | ;; 401 Unauthorized | 541 | ;; 401 Unauthorized |