# HG changeset patch # User Glenn Morris # Date 1200635004 0 # Node ID f78c41a364cffbeeb1ffe1a380c6bb4e31f02403 # Parent e4be44eb1ad5f4ea9db13dc538c29140f368272f (ffap-alist): Remove space from RFC regexp. diff -r e4be44eb1ad5 -r f78c41a364cf lisp/ffap.el --- a/lisp/ffap.el Fri Jan 18 05:41:09 2008 +0000 +++ b/lisp/ffap.el Fri Jan 18 05:43:24 2008 +0000 @@ -797,7 +797,10 @@ ("\\.bib\\'" . ffap-bib) ; search ffap-bib-path ("\\`\\." . ffap-home) ; .emacs, .bashrc, .profile ("\\`~/" . ffap-lcd) ; |~/misc/ffap.el.Z| - ("^[Rr][Ff][Cc][- #]?\\([0-9]+\\)" ; no $ + ;; This uses to have a blank, but ffap-string-at-point doesn't + ;; handle blanks. + ;; http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01058.html + ("^[Rr][Ff][Cc][-#]?\\([0-9]+\\)" ; no $ . ffap-rfc) ; "100% RFC2100 compliant" (dired-mode . ffap-dired) ; maybe in a subdirectory )