diff options
author | 2005-05-08 20:10:37 +0000 | |
---|---|---|
committer | 2005-05-08 20:10:37 +0000 | |
commit | 4d9e1694bb868ae55cb40c2a0c30631e44231791 (patch) | |
tree | 0c17488e308f8a1f5c60af11bb4055a3921f3122 | |
parent | add branch for me playing around with an etc-update style module (diff) | |
download | eselect-4d9e1694bb868ae55cb40c2a0c30631e44231791.tar.gz eselect-4d9e1694bb868ae55cb40c2a0c30631e44231791.tar.bz2 eselect-4d9e1694bb868ae55cb40c2a0c30631e44231791.zip |
Allow show_extra_help_text as part of the default help action.
svn path=/branches/ciaranm/; revision=71
-rw-r--r-- | config/ChangeLog | 5 | ||||
-rw-r--r-- | config/libs/default.eclectic.in | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index f4f41d0..e9d6136 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -2,5 +2,10 @@ ChangeLog for eclectic (ciaranm/config branch) 2005-05-08 Ciaran McCreesh <ciaranm@gentoo.org> + * libs/default.eclectic.in: Allow show_extra_help_text as part of + the default help action. + +2005-05-08 Ciaran McCreesh <ciaranm@gentoo.org> + * branches/ciaranm/config: Create a branch for playing around with an etc-update style module. diff --git a/config/libs/default.eclectic.in b/config/libs/default.eclectic.in index 80bf3e3..c8dcd77 100644 --- a/config/libs/default.eclectic.in +++ b/config/libs/default.eclectic.in @@ -72,6 +72,8 @@ describe_help() { do_help() { echo "${DESCRIPTION}" do_usage + is_function show_extra_help_text && show_extra_help_text + true } # vim: set sw=4 et sts=4 tw=80 : |