From: Richard W.M. Jones Date: Fri, 10 Jan 2020 12:15:23 +0000 (+0000) Subject: stdlib: Don't add \n after quoted_string. X-Git-Tag: v'0.2'~50 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=ca19d10dfd7e3e3c690f5d618d5fc24a0d14accc;p=goals.git stdlib: Don't add \n after quoted_string. --- diff --git a/stdlib/prelude.sh b/stdlib/prelude.sh index 5b42f4e..60d5b9f 100644 --- a/stdlib/prelude.sh +++ b/stdlib/prelude.sh @@ -24,5 +24,5 @@ function quoted_string () { # XXX This doesn't actually do quoting XXX - echo "\"$1\"" + echo -n "\"$1\"" }