diff options
author | Adrian Thurston <thurston@complang.org> | 2015-05-17 20:07:38 -0400 |
---|---|---|
committer | Adrian Thurston <thurston@complang.org> | 2015-05-17 20:07:38 -0400 |
commit | 906cbc08f4fb5ddd44425b10b090ab98c2a07935 (patch) | |
tree | c4fb4d885c64b5a5d907340de697f84b693e9ae6 /test | |
parent | 2b69ada078f1d82298e80e76cdefdfbf8b930f93 (diff) | |
download | colm-906cbc08f4fb5ddd44425b10b090ab98c2a07935.tar.gz |
naming convention improvements
Diffstat (limited to 'test')
-rw-r--r-- | test/ext1.lm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ext1.lm b/test/ext1.lm index 5a645ef4..edafc611 100644 --- a/test/ext1.lm +++ b/test/ext1.lm @@ -23,8 +23,8 @@ str_t *c_alphcount( program_t *prg, tree_t **sp, str_t *a1 ) head_t *h = stringAllocFull( prg, strc, strlen( strc ) ); tree_t *s = constructString( prg, h ); - treeUpref( s ); - treeDownref( prg, sp, a1 ); + colm_tree_upref( s ); + colm_tree_downref( prg, sp, a1 ); return (str_t*)s; } ##### EXP ##### |