From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5993 invoked by alias); 6 Feb 2014 23:24:30 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 32356 Received: (qmail 7072 invoked from network); 6 Feb 2014 23:24:23 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.2 X-Injected-Via-Gmane: http://gmane.org/ To: zsh-workers@zsh.org From: Martin Vaeth Subject: [PATCH] bug in Util/helpfile Date: Thu, 6 Feb 2014 20:27:22 +0000 (UTC) Message-ID: Reply-To: martin@mvath.de X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lounge.imp.fu-berlin.de User-Agent: slrn/pre1.0.0-26 (Linux) 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