[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: dired-aux.el better nroff suggestion
From: |
Sven Joachim |
Subject: |
Re: dired-aux.el better nroff suggestion |
Date: |
Sat, 03 May 2008 08:31:28 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) |
On 2008-05-02 00:29 +0200, jidanni@jidanni.org wrote:
> SJ> Where did you get these suggestions from? In stock Emacs -Q, there are
> SJ> no suggestions at all, and if you load dired-x, there are only "man -l"
> SJ> and "gunzip -q".
>
> All I know is
> $ zgrep zip.*nroff /usr/share/emacs/22.2/lisp/dired-x.el.gz
> "gunzip -qc * | tbl | nroff -man -h"))
I see. The value is determined by Man-support-local-filenames:
(if (Man-support-local-filenames)
"man -l"
"gunzip -qc * | tbl | nroff -man -h"))
I don't have an idea why Man-support-local-filenames returns nil for you
and t for me, but you can set the corresponding variable to t in your
.emacs.
Piping the nroff output through col -b seems reasonable in any case
though, since Emacs cannot currently display overstriked text well,
AFAIK. But on some systems (e.g., Windows) col might not exist, since
it's part of the bsdmainutils rather than coreutils.
Sven