aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-07 23:25:14 +0000
committerDavid Robillard <d@drobilla.net>2010-12-07 23:25:14 +0000
commit375bed3c2e94f44fc3587f3b0cd036b97df8f72d (patch)
treee150e289ea4b832195b29116aa6d573ad16a1d77 /src/resp.cpp
parent7682c4ceab935d39aafac369c9b110b658b1e575 (diff)
downloadresp-375bed3c2e94f44fc3587f3b0cd036b97df8f72d.tar.gz
resp-375bed3c2e94f44fc3587f3b0cd036b97df8f72d.tar.bz2
resp-375bed3c2e94f44fc3587f3b0cd036b97df8f72d.zip
Rename 'parse' to the now more accurate 'expand'.
git-svn-id: http://svn.drobilla.net/resp/resp@307 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.cpp')
-rw-r--r--src/resp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resp.cpp b/src/resp.cpp
index 824acff..9e959f5 100644
--- a/src/resp.cpp
+++ b/src/resp.cpp
@@ -147,7 +147,7 @@ main(int argc, char** argv)
if (!exp || (exp->to_tuple() && exp->to_tuple()->tup_len() == 1))
break;
- const AST* ast = penv.parse(exp);
+ const AST* ast = penv.expand(exp);
pprint(os, ast, cenv, false);
is.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); // Skip newlines
}