Handle ASCII uncounted strings

This commit is contained in:
Piotr Wiszowaty 2014-10-25 15:12:37 +02:00
parent 1e9d71a1dc
commit cd8f1ae7d2
1 changed files with 3 additions and 1 deletions

4
foco65
View File

@ -373,7 +373,9 @@ class Forth:
elif token == "c,":
self.parse_c_comma(token)
elif token == ',"':
self.parse_comma_doublequote()
self.parse_comma_doublequote(True)
elif token == '"':
self.parse_comma_doublequote(False)
elif token == ",'":
self.parse_comma_quote(True)
elif token == "'":