diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | Util/helpfiles | 22 |
2 files changed, 7 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog index 975a98833..a39d98482 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2014-02-18 Peter Stephenson <p.w.stephenson@ntlworld.com> + * m0viefreak: Util/helpfiles: 32405: Util/helpfiles: remove old + example now shell code is integrated in distribution. + * m0viefreak: 32404: Util/helpfiles: use env to find perl. * m0viefreak: 32403: Doc/Zsh/contrib.yo: update zshcontrib diff --git a/Util/helpfiles b/Util/helpfiles index 9e611d7cc..9909a1d26 100755 --- a/Util/helpfiles +++ b/Util/helpfiles @@ -16,24 +16,10 @@ # If a third arg is given, the symlink is not created, but a # list of symlinks is put into the file specified by that arg. -# Example usage: -# cd ~/zsh-4.0.1 # or wherever -# mkdir Help -# cd Help -# man zshbuiltins | colcrt - | helpfiles -# run-help() { -# typeset zhelp=~/zsh-4.0.1/Help # or wherever -# [[ $1 = . ]] && 1=dot -# [[ $1 = : ]] && 1=colon -# if [[ $1 = compctl ]]; then -# man zshcompctl -# elif [[ -f $zhelp/$1 ]]; then -# ${=PAGER:-more} $zhelp/$1 -# else -# man $1 -# fi -# } -# now <Esc>-h works for shell builtins. +# This script is called automatically during `make install' +# unless specified otherwise. + +# For usage and and more information see zshcontrib(1). sub Usage { print(STDERR "Usage: helpfiles zshbuiltins.1 dest-dir [link-file]\n"); |