# HG changeset patch # User Glenn Morris # Date 1222328724 0 # Node ID c646ac5cd7c04c0f9767aec9d279e1466bb9d509 # Parent b41e5dc225356eef8626c49e87a0129c400e0761 (ffap-fixup-url): Don't call url-normalize-url. (Bug#898) diff -r b41e5dc22535 -r c646ac5cd7c0 lisp/ffap.el --- 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)))