aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-10-11 10:56:56 +0000
committerUlrich Müller <ulm@gentoo.org>2009-10-11 10:56:56 +0000
commitf3fd1e3dfdedac734a6baff1c4ba3919dca07a46 (patch)
treeeea2f4db472fc08167aa758e50cc7f887a4ac2ce /bin
parentSuppress "no news" message in brief output mode, bug 288527. (diff)
downloadeselect-f3fd1e3dfdedac734a6baff1c4ba3919dca07a46.tar.gz
eselect-f3fd1e3dfdedac734a6baff1c4ba3919dca07a46.tar.bz2
eselect-f3fd1e3dfdedac734a6baff1c4ba3919dca07a46.zip
Don't use hyphens in identifiers for function names.
svn path=/trunk/; revision=692
Diffstat (limited to 'bin')
-rwxr-xr-xbin/eselect.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/eselect.in b/bin/eselect.in
index c28123a..c9d84a3 100755
--- a/bin/eselect.in
+++ b/bin/eselect.in
@@ -108,17 +108,17 @@ ec_do_version() {
echo "Distributed under the terms of the GNU General Public License v2."
}
-# ec_do_list-options
+# ec_do_list_options
# Display all recognized global options
-ec_do_list-options() {
+ec_do_list_options() {
write_list_start "Global options:"
#write_kv_list_entry "--brief" "Make output shorter (experimental)"
write_kv_list_entry "--no-color,--no-colour" "Disable coloured output"
}
-# ec_do_list-modules
+# ec_do_list_modules
# Display all available eselect modules DEPRECATED
-ec_do_list-modules() {
+ec_do_list_modules() {
do_action modules list "$@"
}
@@ -184,9 +184,9 @@ if [[ -z ${action} ]] && [[ -n ${1##--} ]] ; then
fi
if [[ -n ${action} ]] ; then
- if is_function "ec_do_${action}" ; then
+ if is_function "ec_do_${action//-/_}" ; then
[[ $# -gt 0 ]] && die -q "Too many parameters"
- ec_do_${action}
+ ec_do_${action//-/_}
else
do_action "${action}" "$@"
fi