aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/man.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1ffc92c9e0f..1833749afde 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12003-04-09 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * man.el (Man-heading-regexp): Accept hyphen.
4
12003-04-09 Kenichi Handa <handa@m17n.org> 52003-04-09 Kenichi Handa <handa@m17n.org>
2 6
3 * international/fontset.el: Specify rescale ratio 1.3 for CDAC 7 * international/fontset.el: Specify rescale ratio 1.3 for CDAC
diff --git a/lisp/man.el b/lisp/man.el
index af69340aba3..c7cfe1de2fb 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -256,7 +256,7 @@ the associated section number."
256 "(\\(" Man-section-regexp "\\))\\).*\\1")) 256 "(\\(" Man-section-regexp "\\))\\).*\\1"))
257 "Regular expression describing the heading of a page.") 257 "Regular expression describing the heading of a page.")
258 258
259(defvar Man-heading-regexp "^\\([A-Z][A-Z ]+\\)$" 259(defvar Man-heading-regexp "^\\([A-Z][A-Z -]+\\)$"
260 "Regular expression describing a manpage heading entry.") 260 "Regular expression describing a manpage heading entry.")
261 261
262(defvar Man-see-also-regexp "SEE ALSO" 262(defvar Man-see-also-regexp "SEE ALSO"