Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] bug in Util/helpfiles
- X-seq: zsh-workers 32357
- From: Martin Vaeth <martin@xxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] bug in Util/helpfiles
- Date: Thu, 6 Feb 2014 09:17:06 +0000 (UTC)
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- Reply-to: martin@xxxxxxxx
Hello,
in one of the last changes to Util/helpfiles a typo happened:
It was forgotten to pass the option "-" to colcrt which was always used,
previously; without this option inappropriate output is produced
(e.g. for underscores in variable names).
--- 1/Util/helpfiles
+++ 1/Util/helpfiles
@@ -81,8 +81,8 @@
}
$args = "$mantmp >$coltmp";
unlink($coltmp);
-&Info('attempting colcrt ', $args);
-if(system('colcrt ' . $args) || !(-s $coltmp)) {
+&Info('attempting colcrt - ', $args);
+if(system('colcrt - ' . $args) || !(-s $coltmp)) {
unlink($coltmp);
&Info('attempting col -bx <', $args);
# The x is necessary so that spaces don't turn into tabs, which messes
Messages sorted by:
Reverse Date,
Date,
Thread,
Author