Mercurial > emacs
changeset 4968:1607732e7712
(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.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 10 Nov 1993 20:48:04 +0000 |
parents | 67810bbdfc9d |
children | af6f961194ce |
files | lisp/man.el |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/man.el Wed Nov 10 20:46:09 1993 +0000 +++ b/lisp/man.el Wed Nov 10 20:48:04 1993 +0000 @@ -149,7 +149,7 @@ "-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 @@ ;; 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)) ))