summaryrefslogtreecommitdiffstats
path: root/eshtrans/main.esh
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2016-02-21 13:21:11 (EST)
committer P. J. McDermott <pj@pehjota.net>2016-02-21 13:31:02 (EST)
commit5d5c6e2dd9c5fbdada5887485b2bc8117ecb0c72 (patch)
tree0177eff2b39a6cfd3f18e0e284902e92f6bac8ce /eshtrans/main.esh
parente858b7b8330ec9e7b7f91a810ed9b30674299c2a (diff)
downloadeggshell-5d5c6e2dd9c5fbdada5887485b2bc8117ecb0c72.zip
eggshell-5d5c6e2dd9c5fbdada5887485b2bc8117ecb0c72.tar.gz
eggshell-5d5c6e2dd9c5fbdada5887485b2bc8117ecb0c72.tar.bz2
eshtrans/backend: Don't add a space after "("
Diffstat (limited to 'eshtrans/main.esh')
-rw-r--r--eshtrans/main.esh7
1 files changed, 3 insertions, 4 deletions
diff --git a/eshtrans/main.esh b/eshtrans/main.esh
index 9373ff6..8b94861 100644
--- a/eshtrans/main.esh
+++ b/eshtrans/main.esh
@@ -60,14 +60,14 @@ main()
#try 'foo `bar`'
#try 'foo &&'
#try '{ foo; }'
-#try '( foo )'
+try '( foo )'
#try 'for i in 1 2 3; do stuff; done'
#try 'if foo; then bar; fi'
#try 'if foo; then bar; elif baz; then qux; else quux; fi'
#try 'if ; then ; fi'
#try 'while foo; do bar; done'
#try 'while ; do ; done'
-#try 'foo(){ bar; }'
+try 'foo(){ bar; }'
#try 'case foo in bar) baz;; (qux) quux;; quux);; esac'
#try 'foo bar ( baz )'
#try 'foo $(bar)'
@@ -106,7 +106,6 @@ main()
#try '$((1 + $foo))'
#try "foo '\`'"
#try 'foo "`"'
-#dbg=true
#try "\"'\""
-try "foo 'bar" "baz' &&"
+#try "foo 'bar" "baz' &&"
}