(url-http-chunked-encoding-after-change-function):
Remove superfluous CRLF at end of file. (bug #42)
This commit is contained in:
parent
44b35a235b
commit
bc884fa06a
1 changed files with 5 additions and 1 deletions
|
@ -948,7 +948,11 @@ the end of the document."
|
|||
(url-http-debug "Saw end of stream chunk!")
|
||||
(setq read-next-chunk nil)
|
||||
(url-display-percentage nil nil)
|
||||
(goto-char (match-end 1))
|
||||
;; Every chunk, even the last 0-length one, is
|
||||
;; terminated by CRLF. Skip it.
|
||||
(when (looking-at "\r?\n")
|
||||
(url-http-debug "Removing terminator of last chunk")
|
||||
(delete-region (match-beginning 0) (match-end 0)))
|
||||
(if (re-search-forward "^\r*$" nil t)
|
||||
(url-http-debug "Saw end of trailers..."))
|
||||
(if (url-http-parse-headers)
|
||||
|
|
Loading…
Add table
Reference in a new issue