From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "John Basrai" Newsgroups: gmane.emacs.devel Subject: man.el changes to render section headings in overstrike mode when "man" program does not. Date: Wed, 21 Jan 2004 06:08:05 -0800 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <002101c3e027$fe067bd0$45afa143@sac.unify.com> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1074694319 17682 80.91.224.253 (21 Jan 2004 14:11:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 21 Jan 2004 14:11:59 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Wed Jan 21 15:11:49 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AjJ5B-0007IC-00 for ; Wed, 21 Jan 2004 15:11:49 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AjJ5B-0007Zh-00 for ; Wed, 21 Jan 2004 15:11:49 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AjJ2o-0005Fn-Lu for emacs-devel@quimby.gnus.org; Wed, 21 Jan 2004 09:09:22 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AjJ2F-0005En-1X for emacs-devel@gnu.org; Wed, 21 Jan 2004 09:08:47 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AjJ1e-00050H-ND for emacs-devel@gnu.org; Wed, 21 Jan 2004 09:08:42 -0500 Original-Received: from [204.127.198.39] (helo=rwcrmhc13.comcast.net) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AjJ1c-0004yq-F0 for emacs-devel@gnu.org; Wed, 21 Jan 2004 09:08:08 -0500 Original-Received: from gimli (c-67-161-175-69.client.comcast.net[67.161.175.69]) by comcast.net (rwcrmhc13) with SMTP id <2004012114080601500ke108e> (Authid: jbasrai); Wed, 21 Jan 2004 14:08:06 +0000 Original-To: X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:19401 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:19401 ChangeLog Entry: emacs-21.3/lisp/ChangeLog ================================================== 2004-01-21 John Basrai * man.el (Man-fontify-manpage): Render section headings in `Man-overstrike-face' even when overstrike was not used by man formatter for section headings. ================================================== diff -c man.el.orig man.el *** man.el.orig Mon Nov 10 14:16:18 2003 --- man.el Mon Nov 10 14:51:31 2003 *************** *** 714,719 **** --- 714,724 ---- (replace-match "+") (put-text-property (1- (point)) (point) 'face 'bold)) (Man-softhyphen-to-minus) + (goto-char (point-min)) + (while (re-search-forward Man-heading-regexp nil t) + (put-text-property (match-beginning 0) + (match-end 0) + 'face Man-overstrike-face)) (message "%s man page made up" Man-arguments)) (defun Man-cleanup-manpage ()