changeset 98339:c646ac5cd7c0

(ffap-fixup-url): Don't call url-normalize-url. (Bug#898)
author Glenn Morris <rgm@gnu.org>
date Thu, 25 Sep 2008 07:45:24 +0000
parents b41e5dc22535
children ec3e7b117ca4
files lisp/ffap.el
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ffap.el	Thu Sep 25 07:41:32 2008 +0000
+++ b/lisp/ffap.el	Thu Sep 25 07:45:24 2008 +0000
@@ -633,8 +633,9 @@
    ((and ffap-url-unwrap-local (ffap-url-unwrap-local url)))
    ((and ffap-url-unwrap-remote ffap-ftp-regexp
 	 (ffap-url-unwrap-remote url)))
-   ((fboundp 'url-normalize-url)	; may autoload url (part of w3)
-    (url-normalize-url url))
+   ;; All this seems to do is remove any trailing "#anchor" part (Bug#898).
+;;;   ((fboundp 'url-normalize-url)	; may autoload url (part of w3)
+;;;    (url-normalize-url url))
    (url)))