aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2010-03-05 15:18:20 -0500
committerStefan Monnier2010-03-05 15:18:20 -0500
commite8defde36d0d4ab3dadd7f4a561a8c47ce110f9b (patch)
treee8ca7f793cfd683f6cec01cbf27b3b6c42c843a4
parent254c06a8d8d516a22c9b72dd1c1e32a2e6a83139 (diff)
downloademacs-e8defde36d0d4ab3dadd7f4a561a8c47ce110f9b.tar.gz
emacs-e8defde36d0d4ab3dadd7f4a561a8c47ce110f9b.zip
(Man-files-regexp): Tighten up the regexp (bug#5686).
-rw-r--r--lisp/ChangeLog18
-rw-r--r--lisp/man.el3
2 files changed, 12 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bafe6db6d89..8c5dd5cc0f7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
4
12010-03-03 Chong Yidong <cyd@stupidchicken.com> 52010-03-03 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * macros.el (insert-kbd-macro): Look up keyboard macro using the 7 * macros.el (insert-kbd-macro): Look up keyboard macro using the
@@ -27,19 +31,17 @@
27 31
282010-03-01 Alan Mackenzie <acm@muc.de> 322010-03-01 Alan Mackenzie <acm@muc.de>
29 33
30 * progmodes/cc-engine.el (c-remove-stale-state-cache): Correct 34 * progmodes/cc-engine.el (c-remove-stale-state-cache):
31 previous patch. 35 Correct previous patch.
32 36
332010-03-01 Kenichi Handa <handa@m17n.org> 372010-03-01 Kenichi Handa <handa@m17n.org>
34 38
35 * language/burmese.el (burmese-composable-pattern): Renamed from 39 * language/burmese.el (burmese-composable-pattern): Rename from
36 myanmar-composable-pattern. 40 myanmar-composable-pattern.
37 41
38 * international/characters.el (script-list): Change myanmar to 42 * international/characters.el (script-list):
39 burmese. 43 * international/fontset.el (script-representative-chars):
40 44 Change myanmar to burmese.
41 * international/fontset.el (script-representative-chars): Change
42 myanmar to burmese.
43 (otf-script-alist): Likewise. 45 (otf-script-alist): Likewise.
44 (setup-default-fontset): Likewise. Re-fix :otf spec. 46 (setup-default-fontset): Likewise. Re-fix :otf spec.
45 47
diff --git a/lisp/man.el b/lisp/man.el
index d64846a2d4d..8eb5f73e245 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -283,7 +283,8 @@ This regular expression should start with a `^' character.")
283 "Regular expression for SYNOPSIS heading (or your equivalent). 283 "Regular expression for SYNOPSIS heading (or your equivalent).
284This regexp should not start with a `^' character.") 284This regexp should not start with a `^' character.")
285 285
286(defvar Man-files-regexp "FILES" 286(defvar Man-files-regexp "FILES\\>"
287 ;; Add \> so as not to match mount(8)'s FILESYSTEM INDEPENDENT MOUNT OPTIONS.
287 "Regular expression for FILES heading (or your equivalent). 288 "Regular expression for FILES heading (or your equivalent).
288This regexp should not start with a `^' character.") 289This regexp should not start with a `^' character.")
289 290