From 95b9ed16776db4f1962589789b7a6b73a19b6560 Mon Sep 17 00:00:00 2001 From: Ken Conley Date: Mon, 24 Oct 2011 22:53:45 +0000 Subject: [PATCH] merging r15281 --- tools/rosbash/rosbash | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/rosbash/rosbash b/tools/rosbash/rosbash index 3b332def..76c29e16 100644 --- a/tools/rosbash/rosbash +++ b/tools/rosbash/rosbash @@ -465,16 +465,13 @@ function _roscomplete_rosservice { COMPREPLY=($(compgen -W "$opts" -- ${arg})) elif [[ $COMP_CWORD == 2 ]]; then case ${COMP_WORDS[1]} in - uri|list|type) + uri|list|type|call) opts=`rosservice list 2> /dev/null` COMPREPLY=($(compgen -W "$opts" -- ${arg})) ;; find) # Need a clever way to do message searching ;; - call) - # This takes more logic. - ;; esac fi