]> git.eshelyaron.com Git - emacs.git/commitdiff
(Man-filter-list): Include anything starting with
authorRichard M. Stallman <rms@gnu.org>
Wed, 10 Nov 1993 20:48:04 +0000 (20:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 10 Nov 1993 20:48:04 +0000 (20:48 +0000)
alphabetics, and containing "Last change:".
(manual-entry): Don't call `Man-downcase' since
Man-translate-references has already done the right thing.

lisp/man.el

index 5e2027a210793a54576c1d2671890313e4a04919..9c011ea7d0c50395c526c8572b1805e442eb6fab 100644 (file)
@@ -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))
     ))