git.annexia.org
/
goals.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1091856
)
stdlib: Don't add \n after quoted_string.
author
Richard W.M. Jones
<rjones@redhat.com>
Fri, 10 Jan 2020 12:15:23 +0000
(12:15 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Fri, 10 Jan 2020 12:16:07 +0000
(12:16 +0000)
stdlib/prelude.sh
patch
|
blob
|
history
diff --git
a/stdlib/prelude.sh
b/stdlib/prelude.sh
index
5b42f4e
..
60d5b9f
100644
(file)
--- 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\""
}