aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/url
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/url')
-rw-r--r--lisp/url/ChangeLog4
-rw-r--r--lisp/url/url-http.el5
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 790a7a9aff..8fe26f5883 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,7 @@
+2010-07-25 Michael Albinus <[email protected]>
+
+ * url-http (url-http-parse-headers): Disable Tramp. (Bug#6717)
+
2010-06-12 Štěpán Němec <[email protected]> (tiny change)
* url-vars.el (url-privacy-level): Fix doc typo. (Bug#6406)
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 8c203c0eb8..b9aba9f37c 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -435,7 +435,10 @@ should be shown to the user."
(delete-process url-http-process)))))
(let ((buffer (current-buffer))
(class nil)
- (success nil))
+ (success nil)
+ ;; The filename part of a URL could be in remote file syntax,
+ ;; see Bug#6717 for an example. We disable Tramp, therefore.
+ (tramp-mode nil))
(setq class (/ url-http-response-status 100))
(url-http-debug "Parsed HTTP headers: class=%d status=%d" class url-http-response-status)
(url-http-handle-cookies)