# HG changeset patch # User Richard M. Stallman # Date 752964484 0 # Node ID 1607732e77120d65f47066ecee6000ad5259e623 # Parent 67810bbdfc9d30412022d7a3f7d4fb0adf77e03a (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. diff -r 67810bbdfc9d -r 1607732e7712 lisp/man.el --- 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)) ))