diff options
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 5d9b628a2c2..72efcb33542 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))) |