diff options
| author | Nicolas Avrutin | 2011-07-03 18:03:47 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-03 18:03:47 +0200 |
| commit | 3487ca85e8fcad2742e27255236dd3dccf7971f7 (patch) | |
| tree | c399593661e1f8f5c4ceae7d2b5054992d473ebc | |
| parent | 2b2167043c68f82eeb5a3716a322a7687691f766 (diff) | |
| download | emacs-3487ca85e8fcad2742e27255236dd3dccf7971f7.tar.gz emacs-3487ca85e8fcad2742e27255236dd3dccf7971f7.zip | |
* url-http.el (url-http-create-request): Remove double carriage
return and newline.
Fixes: debbugs:8931
| -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 27b23ac80bb..f0d9530966e 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-07-03 Nicolas Avrutin <nicolasavru@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * url-http.el (url-http-create-request): Remove double carriage | ||
| 4 | return and newline (bug#8931). | ||
| 5 | |||
| 1 | 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org> | 6 | 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * url-http.el (url-http-wait-for-headers-change-function): Remove | 8 | * url-http.el (url-http-wait-for-headers-change-function): Remove |
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 78da8121722..7e8b0d958cc 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el | |||
| @@ -338,7 +338,7 @@ request.") | |||
| 338 | ;; End request | 338 | ;; End request |
| 339 | "\r\n" | 339 | "\r\n" |
| 340 | ;; Any data | 340 | ;; Any data |
| 341 | url-http-data "\r\n")) | 341 | url-http-data)) |
| 342 | "")) | 342 | "")) |
| 343 | (url-http-debug "Request is: \n%s" request) | 343 | (url-http-debug "Request is: \n%s" request) |
| 344 | request)) | 344 | request)) |