zsh-workers
 help / color / mirror / code / Atom feed
* [PATCH] bug in Util/helpfiles
@ 2014-02-06  9:17 Martin Vaeth
  0 siblings, 0 replies; only message in thread
From: Martin Vaeth @ 2014-02-06  9:17 UTC (permalink / raw)
  To: zsh-workers

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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-02-06 23:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-06  9:17 [PATCH] bug in Util/helpfiles Martin Vaeth

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).