aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tuplr.cpp')
-rw-r--r--tuplr.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/tuplr.cpp b/tuplr.cpp
index f3d0c66..ae9caf7 100644
--- a/tuplr.cpp
+++ b/tuplr.cpp
@@ -26,8 +26,7 @@
using namespace std;
using boost::format;
-Funcs AConsCall::funcs;
-GC Object::pool;
+GC Object::pool;
template<typename Atom>
ostream&
@@ -208,9 +207,6 @@ initLang(PEnv& penv, TEnv& tenv)
penv.reg(true, "fn", PEnv::Handler(parseFn));
penv.reg(true, "if", PEnv::Handler(parseCall<AIf>));
penv.reg(true, "def", PEnv::Handler(parseCall<ADefinition>));
- penv.reg(true, "cons", PEnv::Handler(parseCall<AConsCall>));
- penv.reg(true, "car", PEnv::Handler(parseCall<ACarCall>));
- penv.reg(true, "cdr", PEnv::Handler(parseCall<ACdrCall>));
// Numeric primitives
penv.reg(true, "+", PEnv::Handler(parseCall<APrimitive>));