Adding missing newlines in Echo_error

This commit is contained in:
Antonio Terceiro 2009-01-14 22:45:51 -03:00 committed by Daniel Baumann
parent 2a3056e8a9
commit 6891cbe098
1 changed files with 2 additions and 2 deletions

View File

@ -73,9 +73,9 @@ Echo_error ()
if [ "${_L10N}" = "false" ]
then
printf " ${STRING}" "${@}" >&2
printf " ${STRING}\n" "${@}" >&2
else
(printf " $(eval_gettext "${STRING}")" "${@}";) >&2
(printf " $(eval_gettext "${STRING}")" "${@}"; echo;) >&2
fi
}