about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorPeter Stephenson <p.w.stephenson@ntlworld.com>2013-11-23 17:44:12 +0000
committerPeter Stephenson <p.w.stephenson@ntlworld.com>2013-11-23 17:44:12 +0000
commit9503b161ab893a5d5c6ac6f9fdd9e938aee7045c (patch)
treee4714911e5d88154a27e1878f0aad2af91585b4a /Completion/Zsh
parent8e2d4c2cf77125588549194677a2688a547c1b9e (diff)
downloadzsh-9503b161ab893a5d5c6ac6f9fdd9e938aee7045c.tar.gz
zsh-9503b161ab893a5d5c6ac6f9fdd9e938aee7045c.tar.xz
zsh-9503b161ab893a5d5c6ac6f9fdd9e938aee7045c.zip
32031 plus missed _run_help: get helpfiles install path corect in functions
Diffstat (limited to 'Completion/Zsh')
-rw-r--r--Completion/Zsh/Command/_run-help2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Zsh/Command/_run-help b/Completion/Zsh/Command/_run-help
index 786ad3785..81adc4d84 100644
--- a/Completion/Zsh/Command/_run-help
+++ b/Completion/Zsh/Command/_run-help
@@ -1,6 +1,6 @@
 #compdef run-help
 local d expl
-local HELPDIR=${HELPDIR:-/usr/share/zsh/$ZSH_VERSION/help}
+local HELPDIR=${HELPDIR:-@runhelpdir@}
 [[ -d $HELPDIR ]] && {
 	d=($HELPDIR/*(:t))
 	(($#d)) && d+=('.' ':') && _wanted commands expl 'command' compadd -a d