summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crystal.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/crystal.py b/crystal.py
index 6e6f305..3765c4c 100644
--- a/crystal.py
+++ b/crystal.py
@@ -1852,10 +1852,13 @@ class MainText(TextCommand):
if not was_comma:
output += ", "
output += "$%.2x\n" % (byte)
- was_comma = True
+ was_comma = False
new_line = True
elif byte == 0x50:
assert not new_line, "can't have $50 or '@' as the first character on a newline"
+
+ if in_quotes:
+ output += "@\""
pass
# TODO