emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99944: * url-http (url-http-parse


From: Michael Albinus
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99944: * url-http (url-http-parse-headers): Disable file name handlers at
Date: Mon, 26 Jul 2010 15:19:32 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99944
committer: Michael Albinus <address@hidden>
branch nick: emacs-23
timestamp: Mon 2010-07-26 15:19:32 +0200
message:
  * url-http (url-http-parse-headers): Disable file name handlers at
  all (not only Tramp).  (Bug#6717)
modified:
  lisp/url/ChangeLog
  lisp/url/url-http.el
=== modified file 'lisp/url/ChangeLog'
--- a/lisp/url/ChangeLog        2010-07-25 11:36:02 +0000
+++ b/lisp/url/ChangeLog        2010-07-26 13:19:32 +0000
@@ -1,3 +1,8 @@
+2010-07-26  Michael Albinus  <address@hidden>
+
+       * url-http (url-http-parse-headers): Disable file name handlers at
+       all (not only Tramp).  (Bug#6717)
+
 2010-07-25  Michael Albinus  <address@hidden>
 
        * url-http (url-http-parse-headers): Disable Tramp.  (Bug#6717)

=== modified file 'lisp/url/url-http.el'
--- a/lisp/url/url-http.el      2010-07-25 11:36:02 +0000
+++ b/lisp/url/url-http.el      2010-07-26 13:19:32 +0000
@@ -437,8 +437,9 @@
        (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]