* url-http (url-http-parse-headers): Disable file name handlers at
authorMichael Albinus <albinus@detlef>
Mon, 26 Jul 2010 13:19:32 +0000 (15:19 +0200)
committerMichael Albinus <albinus@detlef>
Mon, 26 Jul 2010 13:19:32 +0000 (15:19 +0200)
all (not only Tramp).  (Bug#6717)

lisp/url/ChangeLog
lisp/url/url-http.el

index 8fe26f5..f7babef 100644 (file)
@@ -1,3 +1,8 @@
+2010-07-26  Michael Albinus  <michael.albinus@gmx.de>
+
+       * url-http (url-http-parse-headers): Disable file name handlers at
+       all (not only Tramp).  (Bug#6717)
+
 2010-07-25  Michael Albinus  <michael.albinus@gmx.de>
 
        * url-http (url-http-parse-headers): Disable Tramp.  (Bug#6717)
index b9aba9f..00cfa46 100644 (file)
@@ -437,8 +437,9 @@ should be shown to the user."
        (class 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))
+       ;; see Bug#6717 for an example.  We disable file name
+       ;; handlers, therefore.
+       (file-name-handler-alist 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)