summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Functions/Misc/run-help1
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 74659f563..a105ed2b7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2008-10-07 Clint Adams <clint@zsh.org>
+ * 25823: Functions/Misc/run-help: bring up zshcontrib man page if
+ run-help is run on run-help and run-help is a function.
+
* Jörg Sommer: 25819: Completion/Linux/Command/_modutils: improve
module parameter completion.
diff --git a/Functions/Misc/run-help b/Functions/Misc/run-help
index 709672ca0..85f3912e6 100644
--- a/Functions/Misc/run-help
+++ b/Functions/Misc/run-help
@@ -63,6 +63,7 @@ do
case ${what[(w)1]} in
(comp*) man zshcompsys;;
(zf*) man zshftpsys;;
+ (run-help) man zshcontrib;;
(*) builtin functions ${what[(w)1]} | ${=PAGER:-more};;
esac;;
(*( is a * builtin))