aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-06-10 19:33:37 +0000
committerStefan Monnier2008-06-10 19:33:37 +0000
commitb251c649564f9a3810dfde739ddca5caeb4f14de (patch)
tree3842fd5a053debf57c138c49dab8c7044a8eb9ae
parenta7f07c365f64fb0f93e574776d3b1facdf2a7918 (diff)
downloademacs-b251c649564f9a3810dfde739ddca5caeb4f14de.tar.gz
emacs-b251c649564f9a3810dfde739ddca5caeb4f14de.zip
(ffap-string-at-point-mode-alist): Use alpha rather than lower.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/ffap.el6
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bbe2b11433d..779983ea0ba 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12008-06-10 Stefan Monnier <monnier@iro.umontreal.ca> 12008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * ffap.el (ffap-string-at-point-mode-alist): Use alpha rather than lower.
4
3 * dired.el (dired-insert-directory): Don't assume Unix-style dir names. 5 * dired.el (dired-insert-directory): Don't assume Unix-style dir names.
4 6
5 * subr.el (momentary-string-display): Use an overlay. 7 * subr.el (momentary-string-display): Use an overlay.
diff --git a/lisp/ffap.el b/lisp/ffap.el
index 8c2bf71afde..5d9b628a2c2 100644
--- a/lisp/ffap.el
+++ b/lisp/ffap.el
@@ -978,11 +978,11 @@ If a given RFC isn't in these then `ffap-rfc-path' is offered."
978 ;; Slightly controversial decisions: 978 ;; Slightly controversial decisions:
979 ;; * strip trailing "@" and ":" 979 ;; * strip trailing "@" and ":"
980 ;; * no commas (good for latex) 980 ;; * no commas (good for latex)
981 (file "--:\\\\$+<>@-Z_[:lower:]~*?" "<@" "@>;.,!:") 981 (file "--:\\\\$+<>@-Z_[:alpha:]~*?" "<@" "@>;.,!:")
982 ;; An url, or maybe a email/news message-id: 982 ;; An url, or maybe a email/news message-id:
983 (url "--:=&?$+@-Z_[:lower:]~#,%;*" "^[:alnum:]" ":;.,!?") 983 (url "--:=&?$+@-Z_[:alpha:]~#,%;*" "^[:alnum:]" ":;.,!?")
984 ;; Find a string that does *not* contain a colon: 984 ;; Find a string that does *not* contain a colon:
985 (nocolon "--9$+<>@-Z_[:lower:]~" "<@" "@>;.,!?") 985 (nocolon "--9$+<>@-Z_[:alpha:]~" "<@" "@>;.,!?")
986 ;; A machine: 986 ;; A machine:
987 (machine "-[:alnum:]." "" ".") 987 (machine "-[:alnum:]." "" ".")
988 ;; Mathematica paths: allow backquotes 988 ;; Mathematica paths: allow backquotes