From d92de14f7d8354004edb14ed5658d5f434ce1e31 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 9 Dec 2010 05:39:28 +0000 Subject: Fix indentation. git-svn-id: http://svn.drobilla.net/resp/resp@327 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/lift.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/lift.cpp b/src/lift.cpp index 4e2159b..ad377d7 100644 --- a/src/lift.cpp +++ b/src/lift.cpp @@ -33,14 +33,12 @@ lift_symbol(CEnv& cenv, Code& code, const ASymbol* sym) throw() if (!cenv.liftStack.empty() && cenv.name(cenv.liftStack.top().fn) == sym->sym()) { return cenv.penv.sym("_me"); // Reference to innermost function } else if (!cenv.code.innermost(sym)) { - - const int32_t index = cenv.liftStack.top().index(sym); - // Replace symbol with code to access free variable from closure + const int32_t index = cenv.liftStack.top().index(sym); return tup(sym->loc, cenv.penv.sym("."), cenv.penv.sym("_me"), new ALiteral(T_INT32, index, Cursor()), - NULL); + NULL); } else { return sym; } -- cgit v1.2.1