From 6c195442ea35de9b22cb5c1f4884f05b5ae92222 Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Wed, 14 Aug 2013 15:03:25 +0200 Subject: [PATCH] * url-http.el (url-http-parse-headers): Always place point at the start of the buffer instead of just 80% of the time. --- lisp/url/ChangeLog | 5 +++++ lisp/url/url-http.el | 1 + 2 files changed, 6 insertions(+) diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 2346803c6bf..52a69690534 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,8 @@ +2013-08-14 Lars Magne Ingebrigtsen + + * url-http.el (url-http-parse-headers): Always place point at the + start of the buffer instead of just 80% of the time. + 2013-08-12 Lars Magne Ingebrigtsen * url-http.el (url-handle-content-transfer-encoding): Renamed diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 07049591cf0..7047e6b5f13 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -855,6 +855,7 @@ should be shown to the user." (url-handle-content-transfer-encoding)) (url-http-debug "Finished parsing HTTP headers: %S" success) (widen) + (goto-char (point-min)) success)) (defun url-handle-content-transfer-encoding () -- 2.39.2