diff options
author | Adrian Thurston <thurston@complang.org> | 2010-04-10 02:41:42 +0000 |
---|---|---|
committer | Adrian Thurston <thurston@complang.org> | 2010-04-10 02:41:42 +0000 |
commit | f5f86b97a709b11d73a4fd06e14593e63559ccbf (patch) | |
tree | 6a4852efb77e474866df0c27f3e17f8326041fe2 /colm/bytecode.cpp | |
parent | 6e1518cc64818980eff203452522e2fb1df1e40d (diff) | |
download | colm-f5f86b97a709b11d73a4fd06e14593e63559ccbf.tar.gz |
some more C porting
Diffstat (limited to 'colm/bytecode.cpp')
-rw-r--r-- | colm/bytecode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/colm/bytecode.cpp b/colm/bytecode.cpp index df022399..9c93f5bf 100644 --- a/colm/bytecode.cpp +++ b/colm/bytecode.cpp @@ -354,7 +354,7 @@ void undoPull( Program *prg, FsmRun *fsmRun, Stream *stream, Tree *str ) { const char *data = stringData( ( (Str*)str )->value ); long length = stringLength( ( (Str*)str )->value ); - undo_stream_pull( fsmRun, stream->in, data, length ); + undoStreamPull( fsmRun, stream->in, data, length ); } Word streamPush( Program *prg, Tree **&sp, Stream *stream, Tree *tree, bool ignore ) |