1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(ffap-fixup-url): Don't call url-normalize-url. (Bug#898)

This commit is contained in:
Glenn Morris 2008-09-25 07:45:35 +00:00
parent 4968291f3f
commit 4dd7f3750f
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2008-09-25 Glenn Morris <rgm@gnu.org>
* ffap.el (ffap-fixup-url): Don't call url-normalize-url. (Bug#898)
2008-09-25 Chong Yidong <cyd@stupidchicken.com>
* vc.el (vc-mark-resolved): Move message here from

View file

@ -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)))