summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Sample <samplet@ngyro.com>2021-04-16 21:35:42 -0400
committerTimothy Sample <samplet@ngyro.com>2021-04-16 21:35:42 -0400
commit1e88c314d6662c41db7c496c8912c0e9c4f5f14f (patch)
tree099c4fd0536b10aab91abf0e13f9c144213e05b0
parent18ecd7d1429b03a2d68c52a95b1d75464c4ac1ad (diff)
Fix long lines in the examples in the manual.
* doc/gash.texi (Internal representation examples): Fix long lines in examples.
-rw-r--r--doc/gash.texi6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/gash.texi b/doc/gash.texi
index 7d46222..365260b 100644
--- a/doc/gash.texi
+++ b/doc/gash.texi
@@ -453,7 +453,8 @@ cat <<EOF > hello.scm
(display "Hello world!\n")
EOF
@result{}
-(<sh-with-redirects> ((<< 0 (<sh-quote> "(display \"Hello world!\\n\")\n"))
+(<sh-with-redirects> ((<< 0 (<sh-quote>
+ "(display \"Hello world!\\n\")\n"))
(> 1 "hello.scm"))
(<sh-exec> "cat"))
@@ -462,7 +463,8 @@ hi=Howdy; echo $hi world!
EOF
@result{}
(<sh-with-redirects> ((<< 0 (<sh-quote>
- ("hi=Howdy; echo " (<sh-ref> "hi") " world!\n")))
+ ("hi=Howdy; echo " (<sh-ref> "hi")
+ " world!\n")))
(> 1 "hello.sh"))
(<sh-exec> "cat"))