diff options
Diffstat (limited to 'src/compile.cpp')
-rw-r--r-- | src/compile.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/compile.cpp b/src/compile.cpp index 4ac7dfc..35fb042 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -148,8 +148,6 @@ resp_compile(CEnv& cenv, const AST* ast) throw() case T_FLOAT: case T_INT32: return cenv.engine()->compileLiteral(cenv, ast); - case T_LEXEME: - return cenv.engine()->compileString(cenv, ((ALexeme*)ast)->cppstr.c_str()); case T_STRING: return cenv.engine()->compileString(cenv, ((AString*)ast)->cppstr.c_str()); case T_SYMBOL: @@ -171,8 +169,6 @@ resp_compile(CEnv& cenv, const AST* ast) throw() return compile_cons(cenv, call); else if (form == ".") return compile_dot(cenv, call); - else if (form == "quote") - return resp_compile(cenv, call->list_ref(1)); else if (form == "match") return cenv.engine()->compileMatch(cenv, call); else if (form == "def-type") |