summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-12-01 17:29:36 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-12-01 17:29:36 +0000
commitc7c09e778da3c38947c70260d781cdf22917460d (patch)
tree12919e8943e540b3573a936d4524b381b3ade440 /app-shells/bash-completion/files
parentProxy commit, see ChangeLog for details (diff)
downloadgentoo-2-c7c09e778da3c38947c70260d781cdf22917460d.tar.gz
gentoo-2-c7c09e778da3c38947c70260d781cdf22917460d.tar.bz2
gentoo-2-c7c09e778da3c38947c70260d781cdf22917460d.zip
Revbump for minor ommision in bash-completion.sh file which didn't clean up the env properly. bug 293871
(Portage version: 2.1.7.4/cvs/Linux x86_64)
Diffstat (limited to 'app-shells/bash-completion/files')
-rw-r--r--app-shells/bash-completion/files/bash-completion.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/app-shells/bash-completion/files/bash-completion.sh b/app-shells/bash-completion/files/bash-completion.sh
index 7f8896921b43..6ce5313f2fa7 100644
--- a/app-shells/bash-completion/files/bash-completion.sh
+++ b/app-shells/bash-completion/files/bash-completion.sh
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/files/bash-completion.sh,v 1.6 2009/10/16 03:01:10 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/files/bash-completion.sh,v 1.7 2009/12/01 17:29:36 darkside Exp $
# Check for interactive bash and that we haven't already been sourced.
[ -z "$BASH_VERSION" -o -z "$PS1" -o -n "$BASH_COMPLETION" ] && return
@@ -32,6 +32,7 @@ if [ $bmajor -eq 2 -a $bminor '>' 04 ] || [ $bmajor -gt 2 ]; then
done
# Clean up
+ $loaded_pre && source /usr/share/bash-completion/.post
unset -f _load_completions # not designed to be called more than once
}