- fix minor quoting problem in _cd()

This commit is contained in:
ianmacd 2002-03-31 06:04:48 +00:00
parent cc963371c4
commit 778d21e930

View File

@ -1,6 +1,6 @@
# bash_completion - some programmable completion functions for bash 2.05a
#
# $Id: bash_completion,v 1.237 2002/03/30 19:33:56 ianmacd Exp $
# $Id: bash_completion,v 1.238 2002/03/31 08:04:48 ianmacd Exp $
#
# Copyright (C) Ian Macdonald <ian@caliban.org>
#
@ -1695,7 +1695,7 @@ _cd()
# turn relative paths from current dir into
# absolute ones
[[ ${COMPREPLY[i]} != */* ]] && \
[ -d ${COMPREPLY[i]} ] && \
[ -d "${COMPREPLY[i]}" ] && \
COMPREPLY[i]=$PWD/${COMPREPLY[i]}
done
fi