summaryrefslogtreecommitdiffstats
path: root/eshtrans/main.esh
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2016-02-21 12:46:20 (EST)
committer P. J. McDermott <pj@pehjota.net>2016-02-21 12:46:20 (EST)
commit025ec1a5caee267ccf655bb9ddc3320936f69d57 (patch)
treeaead951e7ba7a9fadd3e945951debfbb2f318644 /eshtrans/main.esh
parent38730b344f7027fa89097ca660300802842a18aa (diff)
downloadeggshell-025ec1a5caee267ccf655bb9ddc3320936f69d57.zip
eggshell-025ec1a5caee267ccf655bb9ddc3320936f69d57.tar.gz
eggshell-025ec1a5caee267ccf655bb9ddc3320936f69d57.tar.bz2
eshtrans/frontend: Fix handling of single quote in double quotes
Diffstat (limited to 'eshtrans/main.esh')
-rw-r--r--eshtrans/main.esh8
1 files changed, 6 insertions, 2 deletions
diff --git a/eshtrans/main.esh b/eshtrans/main.esh
index 0177774..b637695 100644
--- a/eshtrans/main.esh
+++ b/eshtrans/main.esh
@@ -102,6 +102,10 @@ main()
#try '# foo' 'bar'
#try '' 'foo'
#try '\\ foo'
-try '$(($foo + 1))'
-try '$((1 + $foo))'
+#try '$(($foo + 1))'
+#try '$((1 + $foo))'
+#try "foo '\`'"
+#try 'foo "`"'
+dbg=true
+try "\"'\""
}