summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2013-02-03 12:58:07 -0500
committerAdrian Thurston <thurston@complang.org>2013-02-03 12:58:07 -0500
commite3cdaaeadc86e45f7f2c365f5a61a5a060c6f10b (patch)
tree243621ed9618b623ddb4cdd33407e0edc76acc42
parent4c9aa13d4a84ded39bc78cbfb290abe3bdd939da (diff)
downloadcolm-e3cdaaeadc86e45f7f2c365f5a61a5a060c6f10b.tar.gz
don't check tokstart in stream pull, no longer relevant
-rw-r--r--colm/pdarun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/colm/pdarun.c b/colm/pdarun.c
index b8f68b3b..b810a1be 100644
--- a/colm/pdarun.c
+++ b/colm/pdarun.c
@@ -128,8 +128,8 @@ void decrementSteps( PdaRun *pdaRun )
Head *streamPull( Program *prg, FsmRun *fsmRun, StreamImpl *is, long length )
{
- /* We should not be in the midst of getting a token. */
- assert( fsmRun->tokstart == 0 );
+// /* We should not be in the midst of getting a token. */
+// assert( fsmRun->tokstart == 0 );
RunBuf *runBuf = newRunBuf();
runBuf->next = fsmRun->consumeBuf;