]> git.eshelyaron.com Git - emacs.git/commitdiff
* url-http.el (url-http-create-request): Remove double carriage
authorNicolas Avrutin <nicolasavru@gmail.com>
Sun, 3 Jul 2011 16:03:47 +0000 (18:03 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 3 Jul 2011 16:03:47 +0000 (18:03 +0200)
return and newline.

Fixes: debbugs:8931
lisp/url/ChangeLog
lisp/url/url-http.el

index 27b23ac80bb24e29347c51607c768dce4d18d514..f0d9530966e7b6801cb339d0a3267f2561084cf7 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-03  Nicolas Avrutin  <nicolasavru@gmail.com>  (tiny change)
+
+       * url-http.el (url-http-create-request): Remove double carriage
+       return and newline (bug#8931).
+
 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * url-http.el (url-http-wait-for-headers-change-function): Remove
index 78da81217229f8d7579b3d1604c32efbdf784c6f..7e8b0d958ccda6d9bc6e77d9a0d7be392abbae6e 100644 (file)
@@ -338,7 +338,7 @@ request.")
              ;; End request
              "\r\n"
              ;; Any data
-             url-http-data "\r\n"))
+             url-http-data))
            ""))
     (url-http-debug "Request is: \n%s" request)
     request))