summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfunctions/echo.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/echo.sh b/functions/echo.sh
index c217dbd..2765879 100755
--- a/functions/echo.sh
+++ b/functions/echo.sh
@@ -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
}