the request data.
+2004-11-28 Andreas Schwab <schwab@suse.de>
+
+ * url-http.el (url-http-create-request): Don't add newline after
+ the request data.
+
2004-11-20 Masatake YAMATO <jet@gyve.org>
* url.el (url-mm-callback): Delay the invocation
(if ref-url (concat
"Referer: " ref-url "\r\n"))
extra-headers
- ;; Any data
+ ;; Length of data
(if url-request-data
(concat
"Content-length: " (number-to-string
(length url-request-data))
- "\r\n\r\n"
- url-request-data))
+ "\r\n"))
;; End request
- "\r\n"))
+ "\r\n"
+ ;; Any data
+ url-request-data))
(url-http-debug "Request is: \n%s" request)
request))