Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: run-help tidying part 2
- X-seq: zsh-workers 8546
- From: Clint Adams <schizo@xxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: PATCH: run-help tidying part 2
- Date: Thu, 4 Nov 1999 14:05:28 -0500
- In-reply-to: <19991104134819.A18973@xxxxxxxx>; from schizo@xxxxxxxxxx on Thu, Nov 04, 1999 at 01:48:19PM -0500
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
- References: <19991104134819.A18973@xxxxxxxx>
Oh, and to prevent useless invocations of man:
*** Functions/Misc/run-help.old Thu Nov 4 14:03:51 1999
--- Functions/Misc/run-help Thu Nov 4 14:00:18 1999
***************
*** 15,21 ****
[[ $1 == ":" ]] && 1="colon"
# Check whether Util/helpfiles has been used to generate zsh help
! if [[ $1 == "-l" ]]
then
if [[ -n "${HELPDIR:-}" && -d $HELPDIR ]]
then
--- 15,21 ----
[[ $1 == ":" ]] && 1="colon"
# Check whether Util/helpfiles has been used to generate zsh help
! if [[ $# == 0 || $1 == "-l" ]]
then
if [[ -n "${HELPDIR:-}" && -d $HELPDIR ]]
then
Messages sorted by:
Reverse Date,
Date,
Thread,
Author