changeset 87822:f78c41a364cf

(ffap-alist): Remove space from RFC regexp.
author Glenn Morris <rgm@gnu.org>
date Fri, 18 Jan 2008 05:43:24 +0000
parents e4be44eb1ad5
children 4e2de705bed3
files lisp/ffap.el
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
     )