]> git.eshelyaron.com Git - emacs.git/commitdiff
(ffap-fixup-url): Don't call url-normalize-url. (Bug#898)
authorGlenn Morris <rgm@gnu.org>
Thu, 25 Sep 2008 07:45:35 +0000 (07:45 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 25 Sep 2008 07:45:35 +0000 (07:45 +0000)
lisp/ChangeLog
lisp/ffap.el

index a9159efe5e15ede8f0536559bb3dcc8fb4879956..fae9ac0b5c958227a34dcc21132960ed6b4e8538 100644 (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
index 5d9b628a2c252499e767fc1e29b239aa8f776c21..72efcb335428735fde2c937220f346705dc37030 100644 (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)))
 
 \f