Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 475284 | Differences between
and this patch

Collapse All | Expand All

(-)a/bin/eselect.in (-5 lines)
Lines 55-65 IFS=$' \t\n' Link Here
55
shopt -s extglob
55
shopt -s extglob
56
shopt -s expand_aliases
56
shopt -s expand_aliases
57
57
58
# Save stderr file descriptor
59
# exec {ESELECT_STDERR}>&2		# >=bash-4.1
60
exec 3>&2
61
ESELECT_STDERR=3
62
63
# Load core functions
58
# Load core functions
64
source "${ESELECT_CORE_PATH}/core.bash" || exit 255
59
source "${ESELECT_CORE_PATH}/core.bash" || exit 255
65
# Load necessary functions for the main script
60
# Load necessary functions for the main script
(-)a/libs/core.bash.in (-3 lines)
Lines 32-40 check_do() { Link Here
32
die() {
32
die() {
33
	local item funcname="" sourcefile="" lineno="" n e s="yes"
33
	local item funcname="" sourcefile="" lineno="" n e s="yes"
34
34
35
	# Restore stderr if it was redirected
36
	exec 2>&${ESELECT_STDERR}
37
38
	# do we have a working write_error_msg?
35
	# do we have a working write_error_msg?
39
	if is_function "write_error_msg"; then
36
	if is_function "write_error_msg"; then
40
		e="write_error_msg"
37
		e="write_error_msg"

Return to bug 475284