aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-11-10 20:48:04 +0000
committerRichard M. Stallman <[email protected]>1993-11-10 20:48:04 +0000
commit1b88a44adba12af342e92ea05b6536e2fdcb9474 (patch)
tree30db71e4b1d77c4e7041295937ee96e70b2de0aa
parentde3fa0b2382dd1eb35e4362cbdd66d7749a58fb6 (diff)
(Man-filter-list): Include anything starting with
alphabetics, and containing "Last change:". (manual-entry): Don't call `Man-downcase' since Man-translate-references has already done the right thing.
-rw-r--r--lisp/man.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/man.el b/lisp/man.el
index 5e2027a210..9c011ea7d0 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -149,7 +149,7 @@ the associated section number.")
"-e '/^ *Page [0-9]*.*(printed [0-9\\/]*)$/d'"
"-e '/^Printed [0-9].*[0-9]$/d'"
"-e '/^[ \\t]*X Version 1[01].*Release [0-9]/d'"
- "-e '/^Sun Microsystems.*Last change:/d'"
+ "-e '/^[A-za-z].*Last change:/d'"
"-e '/^Sun Release [0-9].*[0-9]$/d'"
"-e '/^\\n$/D'"
))
@@ -420,8 +420,9 @@ Universal argument ARG, is passed to `Man-getpage-in-background'."
;; Recognize the subject(section) syntax.
(setq man-args (Man-translate-references man-args))
- (if Man-downcase-section-letters-p
- (setq man-args (Man-downcase man-args)))
+ ;; This is apparently already done correctly via Man-translate-references.
+ ;; (if Man-downcase-section-letters-p
+ ;; (setq man-args (Man-downcase man-args)))
(Man-getpage-in-background man-args (consp arg))
))