echo: purge unused *_running echo helpers

Partial fix for #952880

Gbp-Dch: Short
This commit is contained in:
Lyndon Brown 2020-03-01 03:00:29 +00:00 committed by Luca Boccassi
parent 06f632efdf
commit 73c1100c01
1 changed files with 0 additions and 61 deletions

View File

@ -27,24 +27,6 @@ Echo_debug ()
fi
}
Echo_debug_running ()
{
if [ "${_DEBUG}" = "true" ]
then
STRING="${1}"
shift
printf "D: ${STRING}" "${@}" >&1
if [ "${_COLOR}" = "false" ]
then
printf "..." >&1
else
printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1
fi
fi
}
Echo_error ()
{
STRING="${1}"
@ -78,31 +60,6 @@ Echo_message ()
fi
}
Echo_message_running ()
{
if [ "${_QUIET}" != "true" ]
then
STRING="${1}"
shift
if [ "${_COLOR}" = "false" ]
then
printf "P:" >&1
else
printf "${WHITE}P${NO_COLOR}:" >&1
fi
printf " ${STRING}" "${@}" >&1
if [ "${_COLOR}" = "true" ]
then
printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1
else
printf "..." >&1
fi
fi
}
Echo_verbose ()
{
if [ "${_VERBOSE}" = "true" ]
@ -114,24 +71,6 @@ Echo_verbose ()
fi
}
Echo_verbose_running ()
{
if [ "${_VERBOSE}" != "true" ]
then
STRING="${1}"
shift
printf "I: ${STRING}" "${@}" >&1
if [ "${_COLOR}" = "true" ]
then
printf "... ${YELLOW}${BLINK}running${NO_COLOR}" >&1
else
printf "..." >&1
fi
fi
}
Echo_warning ()
{
STRING="${1}"