summaryrefslogtreecommitdiff
path: root/colm/bytecode.cpp
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2010-04-10 02:41:42 +0000
committerAdrian Thurston <thurston@complang.org>2010-04-10 02:41:42 +0000
commitf5f86b97a709b11d73a4fd06e14593e63559ccbf (patch)
tree6a4852efb77e474866df0c27f3e17f8326041fe2 /colm/bytecode.cpp
parent6e1518cc64818980eff203452522e2fb1df1e40d (diff)
downloadcolm-f5f86b97a709b11d73a4fd06e14593e63559ccbf.tar.gz
some more C porting
Diffstat (limited to 'colm/bytecode.cpp')
-rw-r--r--colm/bytecode.cpp2
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 )