- remove redundant line from add_entries() (_cvs() helper function)

This commit is contained in:
ianmacd 2002-05-16 16:07:38 +00:00
parent f11132345f
commit 90b352d303

View File

@ -1,6 +1,6 @@
# bash_completion - some programmable completion functions for bash 2.05a # bash_completion - some programmable completion functions for bash 2.05a
# #
# $Id: bash_completion,v 1.322 2002/05/16 16:15:19 ianmacd Exp $ # $Id: bash_completion,v 1.323 2002/05/16 18:07:38 ianmacd Exp $
# #
# Copyright (C) Ian Macdonald <ian@caliban.org> # Copyright (C) Ian Macdonald <ian@caliban.org>
# #
@ -874,7 +874,6 @@ set_prefix()
get_entries() get_entries()
{ {
entries=( $( cut -d/ -f2 -s ${prefix}CVS/Entries | grep "^$cur" ) )
entries=( $( compgen -W \ entries=( $( compgen -W \
"$( echo $( cut -d/ -f2 -s ${prefix}CVS/Entries ) )" -- $cur ) ) "$( echo $( cut -d/ -f2 -s ${prefix}CVS/Entries ) )" -- $cur ) )
} }