summaryrefslogtreecommitdiffstats
path: root/eshtrans/main.esh
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2016-02-21 12:12:20 (EST)
committer P. J. McDermott <pj@pehjota.net>2016-02-21 12:14:23 (EST)
commit506a0723291b4abc4b707a6353a840ef51f95ee8 (patch)
tree4babbc574fd99607d9cb39d5b999d79ff21e9ecd /eshtrans/main.esh
parent37a60f8da15bcf6ef93c9173e3a5c6cecf9693cc (diff)
downloadeggshell-506a0723291b4abc4b707a6353a840ef51f95ee8.zip
eggshell-506a0723291b4abc4b707a6353a840ef51f95ee8.tar.gz
eggshell-506a0723291b4abc4b707a6353a840ef51f95ee8.tar.bz2
eshtrans/frontend: Fix handling of words beginning with "\"
Diffstat (limited to 'eshtrans/main.esh')
-rw-r--r--eshtrans/main.esh8
1 files changed, 5 insertions, 3 deletions
diff --git a/eshtrans/main.esh b/eshtrans/main.esh
index 1cd6e07..46edd26 100644
--- a/eshtrans/main.esh
+++ b/eshtrans/main.esh
@@ -98,7 +98,9 @@ main()
#try 'v=foo'
#try 'if &&'
#try 'if true; do'
-try 'foo' '#bar'
-try '# foo' 'bar'
-try '' 'foo'
+#try 'foo' '#bar'
+#try '# foo' 'bar'
+#try '' 'foo'
+dbg=true
+try '\\ foo'
}