diff options
author | Martin Vaeth <martin@mvath.de> | 2014-02-06 20:27:22 +0000 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2014-02-07 09:17:11 +0000 |
commit | 045b2418bd9b564001d815f1167f0c8ee3786d32 (patch) | |
tree | 27fce0681c6a2040589b2712bf4eceb2f8bd5936 /Util/helpfiles | |
parent | 1af0d645523f90a9513e1b2974937614bbc6e70c (diff) | |
download | zsh-045b2418bd9b564001d815f1167f0c8ee3786d32.tar.gz zsh-045b2418bd9b564001d815f1167f0c8ee3786d32.tar.xz zsh-045b2418bd9b564001d815f1167f0c8ee3786d32.zip |
32356: fix a typo
Diffstat (limited to 'Util/helpfiles')
-rwxr-xr-x | Util/helpfiles | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Util/helpfiles b/Util/helpfiles index 900564842..cdce8880b 100755 --- a/Util/helpfiles +++ b/Util/helpfiles @@ -81,8 +81,8 @@ if(system('man ' . $args) || !(-s $mantmp)) { } $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 |