[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r99617: (Man-files-regexp): Tighten u
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r99617: (Man-files-regexp): Tighten up the regexp (bug#5686). |
Date: |
Fri, 05 Mar 2010 15:18:20 -0500 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 99617
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2010-03-05 15:18:20 -0500
message:
(Man-files-regexp): Tighten up the regexp (bug#5686).
modified:
lisp/ChangeLog
lisp/man.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2010-03-03 17:31:50 +0000
+++ b/lisp/ChangeLog 2010-03-05 20:18:20 +0000
@@ -1,3 +1,7 @@
+2010-03-05 Stefan Monnier <address@hidden>
+
+ * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
+
2010-03-03 Chong Yidong <address@hidden>
* macros.el (insert-kbd-macro): Look up keyboard macro using the
@@ -27,19 +31,17 @@
2010-03-01 Alan Mackenzie <address@hidden>
- * progmodes/cc-engine.el (c-remove-stale-state-cache): Correct
- previous patch.
+ * progmodes/cc-engine.el (c-remove-stale-state-cache):
+ Correct previous patch.
2010-03-01 Kenichi Handa <address@hidden>
- * language/burmese.el (burmese-composable-pattern): Renamed from
+ * language/burmese.el (burmese-composable-pattern): Rename from
myanmar-composable-pattern.
- * international/characters.el (script-list): Change myanmar to
- burmese.
-
- * international/fontset.el (script-representative-chars): Change
- myanmar to burmese.
+ * international/characters.el (script-list):
+ * international/fontset.el (script-representative-chars):
+ Change myanmar to burmese.
(otf-script-alist): Likewise.
(setup-default-fontset): Likewise. Re-fix :otf spec.
=== modified file 'lisp/man.el'
--- a/lisp/man.el 2010-02-16 14:35:45 +0000
+++ b/lisp/man.el 2010-03-05 20:18:20 +0000
@@ -283,7 +283,8 @@
"Regular expression for SYNOPSIS heading (or your equivalent).
This regexp should not start with a `^' character.")
-(defvar Man-files-regexp "FILES"
+(defvar Man-files-regexp "FILES\\>"
+ ;; Add \> so as not to match mount(8)'s FILESYSTEM INDEPENDENT MOUNT OPTIONS.
"Regular expression for FILES heading (or your equivalent).
This regexp should not start with a `^' character.")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r99617: (Man-files-regexp): Tighten up the regexp (bug#5686).,
Stefan Monnier <=