aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-01-18 05:43:35 +0000
committerGlenn Morris2008-01-18 05:43:35 +0000
commitd4f7fdc601f3eca0a09c3dd4ca23396dd5b531b6 (patch)
tree8c9cc0d90347dd9e86600762e0de07f31ce2b452
parent279c44082ae75f8483460b5c7936416e8ef7df01 (diff)
downloademacs-d4f7fdc601f3eca0a09c3dd4ca23396dd5b531b6.tar.gz
emacs-d4f7fdc601f3eca0a09c3dd4ca23396dd5b531b6.zip
(ffap-alist): Remove space from RFC regexp.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/ffap.el5
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 50bce510858..9c95f77c428 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-01-18 Glenn Morris <rgm@gnu.org>
2
3 * ffap.el (ffap-alist): Remove space from RFC regexp.
4
12008-01-18 Richard Stallman <rms@gnu.org> 52008-01-18 Richard Stallman <rms@gnu.org>
2 6
3 * custom.el (custom-theme-recalc-face): Use face-spec-set rather 7 * 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
797 ("\\.bib\\'" . ffap-bib) ; search ffap-bib-path 797 ("\\.bib\\'" . ffap-bib) ; search ffap-bib-path
798 ("\\`\\." . ffap-home) ; .emacs, .bashrc, .profile 798 ("\\`\\." . ffap-home) ; .emacs, .bashrc, .profile
799 ("\\`~/" . ffap-lcd) ; |~/misc/ffap.el.Z| 799 ("\\`~/" . ffap-lcd) ; |~/misc/ffap.el.Z|
800 ("^[Rr][Ff][Cc][- #]?\\([0-9]+\\)" ; no $ 800 ;; This uses to have a blank, but ffap-string-at-point doesn't
801 ;; handle blanks.
802 ;; http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01058.html
803 ("^[Rr][Ff][Cc][-#]?\\([0-9]+\\)" ; no $
801 . ffap-rfc) ; "100% RFC2100 compliant" 804 . ffap-rfc) ; "100% RFC2100 compliant"
802 (dired-mode . ffap-dired) ; maybe in a subdirectory 805 (dired-mode . ffap-dired) ; maybe in a subdirectory
803 ) 806 )