aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-03-20 23:46:24 +0000
committerZac Medico <zmedico@gentoo.org>2010-03-20 23:46:24 +0000
commita55c1f30f05202f6cbf04c8748b3c615b7ad7306 (patch)
tree478b43c4749b8f4b1b71d1dbb7df2e05262eb299 /bin/isolated-functions.sh
parentFix typo. (diff)
downloadportage-a55c1f30f05202f6cbf04c8748b3c615b7ad7306.tar.gz
portage-a55c1f30f05202f6cbf04c8748b3c615b7ad7306.tar.bz2
portage-a55c1f30f05202f6cbf04c8748b3c615b7ad7306.zip
Bug #309149 - Unify look of eend used in bash & python code, additionally
fixing few inconsistences in bash code. Thanks to Michał Górny <gentoo@mgorny.alt.pl> for this patch. svn path=/main/trunk/; revision=15839
Diffstat (limited to 'bin/isolated-functions.sh')
-rwxr-xr-xbin/isolated-functions.sh11
1 files changed, 4 insertions, 7 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh
index 815e4e5d6..630801304 100755
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -326,10 +326,10 @@ _eend() {
fi
if [[ ${RC_ENDCOL} == "yes" ]] ; then
- echo -e "${ENDCOL} ${msg}"
+ echo -e "${ENDCOL} ${msg}"
else
[[ ${LAST_E_CMD} == ebegin ]] || LAST_E_LEN=0
- printf "%$(( COLS - LAST_E_LEN - 6 ))s%b\n" '' "${msg}"
+ printf "%$(( COLS - LAST_E_LEN - 7 ))s%b\n" '' "${msg}"
fi
return ${retval}
@@ -397,7 +397,7 @@ get_KV() {
}
unset_colors() {
- COLS="25 80"
+ COLS=80
ENDCOL=
GOOD=
@@ -412,13 +412,10 @@ set_colors() {
COLS=${COLUMNS:-0} # bash's internal COLUMNS variable
(( COLS == 0 )) && COLS=$(set -- $(stty size 2>/dev/null) ; echo $2)
(( COLS > 0 )) || (( COLS = 80 ))
- COLS=$((${COLS} - 8)) # width of [ ok ] == 7
- # Adjust COLS so that eend works properly on a standard BSD console.
- [[ $TERM = cons25 || $TERM = dumb ]] && ((COLS--))
# Now, ${ENDCOL} will move us to the end of the
# column; irregardless of character width
- ENDCOL=$'\e[A\e['${COLS}'C'
+ ENDCOL=$'\e[A\e['$(( COLS - 8 ))'C'
if [ -n "${PORTAGE_COLORMAP}" ] ; then
eval ${PORTAGE_COLORMAP}
else