- updated release to 20020601

This commit is contained in:
ianmacd 2002-06-01 16:46:19 +00:00
parent 3bacdca5a8
commit 955f8ac024

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.338 2002/05/30 20:26:41 ianmacd Exp $ # $Id: bash_completion,v 1.339 2002/06/01 18:46:19 ianmacd Exp $
# #
# Copyright (C) Ian Macdonald <ian@caliban.org> # Copyright (C) Ian Macdonald <ian@caliban.org>
# #
@ -18,7 +18,7 @@
# along with this program; if not, write to the Free Software Foundation, # along with this program; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# RELEASE: 20020528 # RELEASE: 20020601
[ -n "$DEBUG" ] && set -v || set +v [ -n "$DEBUG" ] && set -v || set +v
@ -1854,7 +1854,7 @@ _tar()
COMPREPLY=() COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]} cur=${COMP_WORDS[COMP_CWORD]}
if [ $COMP_CWORD = 1 ]; then if [ $COMP_CWORD -eq 1 ]; then
COMPREPLY=( $( compgen -W 'c t x u r d A' -- $cur ) ) COMPREPLY=( $( compgen -W 'c t x u r d A' -- $cur ) )
return 0 return 0
fi fi