diff options
author | Francesco Potortì <pot@gnu.org> | 1994-09-29 12:42:45 +0000 |
---|---|---|
committer | Francesco Potortì <pot@gnu.org> | 1994-09-29 12:42:45 +0000 |
commit | f928846678fdf97a4534860db0873908fe2091df (patch) | |
tree | af5a33cbcb9571df38fdd2da899cbdce56bb54e8 /lisp/man.el | |
parent | a5faa58c515970cfd749f0790c39471d4c4b4def (diff) | |
download | emacs-f928846678fdf97a4534860db0873908fe2091df.tar.gz |
* man.el
(Man-init-defvars, Man-cleanup-manpage, Man-fontify-manpage):
added support for the big cross present in the ksh manpage.
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/man.el b/lisp/man.el index 9687d7783ef..86330bb9b52 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -3,8 +3,8 @@ ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc. ;; Author: Barry A. Warsaw <bwarsaw@cen.com> -;; Last-Modified: $Date: 1994/09/21 16:15:42 $ -;; Version: $Revision: 1.48 $ +;; Last-Modified: $Date: 1994/09/22 12:10:16 $ +;; Version: $Revision: 1.49 $ ;; Keywords: help ;; Adapted-By: ESR, pot @@ -331,6 +331,7 @@ This is necessary if one wants to dump man.el with emacs." "") "-e '/\e[789]/s///g'" "-e '/o\b+/s//o/g'" + "-e '/|\b-/s//+/g'" "-e '/^\\n$/D'" "-e '/[Nn]o such file or directory/d'" "-e '/Reformatting page. Wait/d'" @@ -618,6 +619,9 @@ Same for the ANSI bold and normal escape sequences." (while (search-forward "o\b+" nil t) (backward-delete-char 2) (put-text-property (1- (point)) (point) 'face 'bold)) + (while (search-forward "|\b-" nil t) + (replace-match "+") + (put-text-property (1- (point)) (point) 'face 'bold)) (goto-char (point-min)) (while (re-search-forward "\\(.\\)\\(\b\\1\\)+" nil t) (replace-match "\\1") @@ -639,6 +643,8 @@ Same for the ANSI bold and normal escape sequences." (goto-char (point-min)) (while (search-forward "o\b+" nil t) (backward-delete-char 2)) (goto-char (point-min)) + (while (search-forward "|\b-" nil t) (replace-match "+")) + (goto-char (point-min)) (while (re-search-forward "\\(.\\)\\(\b\\1\\)+" nil t) (replace-match "\\1")) (message "%s man page cleaned up" Man-arguments)) |