stdlib: Don't add \n after quoted_string.
authorRichard W.M. Jones <rjones@redhat.com>
Fri, 10 Jan 2020 12:15:23 +0000 (12:15 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Fri, 10 Jan 2020 12:16:07 +0000 (12:16 +0000)
stdlib/prelude.sh

index 5b42f4e..60d5b9f 100644 (file)
@@ -24,5 +24,5 @@
 function quoted_string ()
 {
     # XXX This doesn't actually do quoting XXX
-    echo "\"$1\""
+    echo -n "\"$1\""
 }