From: Glenn Morris Date: Fri, 18 Jan 2008 05:43:35 +0000 (+0000) Subject: (ffap-alist): Remove space from RFC regexp. X-Git-Tag: emacs-pretest-23.0.90~8521 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d4f7fdc601f3eca0a09c3dd4ca23396dd5b531b6;p=emacs.git (ffap-alist): Remove space from RFC regexp. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 50bce510858..9c95f77c428 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-01-18 Glenn Morris + + * ffap.el (ffap-alist): Remove space from RFC regexp. + 2008-01-18 Richard Stallman * custom.el (custom-theme-recalc-face): Use face-spec-set rather diff --git a/lisp/ffap.el b/lisp/ffap.el index 27cdd9cf512..c34478a30de 100644 --- a/lisp/ffap.el +++ b/lisp/ffap.el @@ -797,7 +797,10 @@ This uses ffap-file-exists-string, which may try adding suffixes from ("\\.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 )