Accidentally left some echo commands for debugging.

This commit is contained in:
ianmacd 2006-02-24 11:48:59 +00:00
parent 4a19036e8c
commit a8474fe61a

View File

@ -1,7 +1,7 @@
# bash_completion - programmable completion functions for bash 3.x # bash_completion - programmable completion functions for bash 3.x
# (backwards compatible with bash 2.05b) # (backwards compatible with bash 2.05b)
# #
# $Id: bash_completion,v 1.850 2006/02/24 12:04:52 ianmacd Exp $ # $Id: bash_completion,v 1.851 2006/02/24 12:48:59 ianmacd Exp $
# #
# Copyright (C) Ian Macdonald <ian@caliban.org> # Copyright (C) Ian Macdonald <ian@caliban.org>
# #
@ -411,7 +411,7 @@ _alias()
;; ;;
esac esac
} }
complete -F _alias alias complete -F _alias $nospace alias
# bash export completion # bash export completion
# #
@ -3030,9 +3030,6 @@ _cd()
local -r mark_dirs=$(_rl_enabled mark-directories && echo y) local -r mark_dirs=$(_rl_enabled mark-directories && echo y)
local -r mark_symdirs=$(_rl_enabled mark-symlinked-directories && echo y) local -r mark_symdirs=$(_rl_enabled mark-symlinked-directories && echo y)
echo $mark_dirs
echo $mark_symdirs
# we have a CDPATH, so loop on its contents # we have a CDPATH, so loop on its contents
for i in ${CDPATH//:/$'\t'}; do for i in ${CDPATH//:/$'\t'}; do
# create an array of matched subdirs # create an array of matched subdirs