zsh-workers
 help / color / mirror / code / Atom feed
From: Martin Vaeth <martin@mvath.de>
To: zsh-workers@zsh.org
Subject: [PATCH] bug in Util/helpfile
Date: Thu, 6 Feb 2014 20:27:22 +0000 (UTC)	[thread overview]
Message-ID: <slrnlf7s1n.qpf.martin@lounge.imp.fu-berlin.de> (raw)

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


                 reply	other threads:[~2014-02-06 23:24 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=slrnlf7s1n.qpf.martin@lounge.imp.fu-berlin.de \
    --to=martin@mvath.de \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).