diff options
author | Francesco Potortì <pot@gnu.org> | 1994-10-24 15:34:50 +0000 |
---|---|---|
committer | Francesco Potortì <pot@gnu.org> | 1994-10-24 15:34:50 +0000 |
commit | 2b5de6158ed26a484c895e2e4daa93a30f06fa36 (patch) | |
tree | f005c7b6b1d934aded88f48acd7f0e0e63ce54f9 /lisp/man.el | |
parent | 591d257e04b9bdf20b594e9282dd0171691eedda (diff) | |
download | emacs-2b5de6158ed26a484c895e2e4daa93a30f06fa36.tar.gz |
* man.el (Man-init-defvars): Do not delete empty lines.
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/man.el b/lisp/man.el index 397cd426f6c..ab27a6b74ab 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/10/20 10:04:17 $ -;; Version: $Revision: 1.53 $ +;; Last-Modified: $Date: 1994/10/24 12:37:01 $ +;; Version: $Revision: 1.54 $ ;; Keywords: help ;; Adapted-By: ESR, pot @@ -346,7 +346,7 @@ This is necessary if one wants to dump man.el with emacs." (if Man-sed-script (concat "-e '" Man-sed-script "'") "") - "-e '/^[\001-\032]*$/d'" + "-e '/^[\001-\032][\001-\032]*$/d'" "-e '/\e[789]/s///g'" "-e '/[Nn]o such file or directory/d'" "-e '/Reformatting page. Wait/d'" |