diff options
author | Glenn Morris <rgm@gnu.org> | 2008-09-25 07:45:35 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-09-25 07:45:35 +0000 |
commit | 4dd7f3750f4f82be7e4f42bbe1e1ebe193da9d2c (patch) | |
tree | ffb0ff35c1ba7f4f9063663b4ac81a11971bc386 /lisp/ffap.el | |
parent | 4968291f3f4a32a3333095123a6d3793ee5a3d71 (diff) |
(ffap-fixup-url): Don't call url-normalize-url. (Bug#898)
Diffstat (limited to 'lisp/ffap.el')
-rw-r--r-- | lisp/ffap.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ffap.el b/lisp/ffap.el index 5d9b628a2c..72efcb3354 100644 --- a/lisp/ffap.el +++ b/lisp/ffap.el @@ -633,8 +633,9 @@ Looks at `ffap-ftp-default-user', returns \"\" for \"localhost\"." ((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))) |