diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-05-08 17:22:09 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-05-08 17:22:09 +0000 |
commit | 271452b7d8975f4f10a32647715eebe9b0f9009f (patch) | |
tree | add8896455f0cd74304c6d6484861fa2558b5ec8 | |
parent | Minor changes to use the new hightlight function. (diff) | |
download | eselect-271452b7d8975f4f10a32647715eebe9b0f9009f.tar.gz eselect-271452b7d8975f4f10a32647715eebe9b0f9009f.tar.bz2 eselect-271452b7d8975f4f10a32647715eebe9b0f9009f.zip |
do_show should return 0.
svn path=/trunk/; revision=65
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | modules/bashcomp.eclectic | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -19,8 +19,9 @@ ChangeLog for eclectic 2005-05-08 Aaron Walker <ka0ttic@gentoo.org> - * modules/profile.module: Re-fix profile module since the + * modules/profile.eclectic: Re-fix profile module since the profile-symlink -> profile move reverted the changes. + * modules/bashcomp.eclectic: do_show should return 0. * bin/eclectic.in, bin/Makefile.am: Use %VERSION%. 2005-05-08 Tom Martin <slarti@gentoo.org> diff --git a/modules/bashcomp.eclectic b/modules/bashcomp.eclectic index 7c25c08..cc99cf8 100644 --- a/modules/bashcomp.eclectic +++ b/modules/bashcomp.eclectic @@ -26,6 +26,8 @@ do_show() { [[ ${n} -eq 0 ]] && \ write_kv_list_entry "No completions currently enabled" "" + + return 0 } ### list action ### |