summaryrefslogtreecommitdiff
path: root/colm/bytecode.cpp
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2010-03-21 01:26:19 +0000
committerAdrian Thurston <thurston@complang.org>2010-03-21 01:26:19 +0000
commit717d34716302962d42571ee0b59d9a116499ce06 (patch)
treec9ff39916f6986f2ed706b039ee9981b4578c3c7 /colm/bytecode.cpp
parenta150841546bb030021dd6cfbe6477622090dd147 (diff)
downloadcolm-717d34716302962d42571ee0b59d9a116499ce06.tar.gz
Some movement to camel case.
Diffstat (limited to 'colm/bytecode.cpp')
-rw-r--r--colm/bytecode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/colm/bytecode.cpp b/colm/bytecode.cpp
index 90830cfd..3b3df156 100644
--- a/colm/bytecode.cpp
+++ b/colm/bytecode.cpp
@@ -320,11 +320,11 @@ Tree *parse_finish( Tree **&sp, Program *prg, Accum *accum, bool revertOn )
if ( !revertOn )
commit_full( sp, accum->pdaRun, 0 );
- Tree *tree = get_parsed_root( accum->pdaRun, accum->pdaRun->stopTarget > 0 );
+ Tree *tree = getParsedRoot( accum->pdaRun, accum->pdaRun->stopTarget > 0 );
tree_upref( tree );
if ( !revertOn )
- clean_parser( sp, accum->pdaRun );
+ cleanParser( sp, accum->pdaRun );
/* Indicate that this tree came out of a parser. */
tree->flags |= AF_PARSED;