aboutsummaryrefslogtreecommitdiff
path: root/src/rt/Lisp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/Lisp.cc')
-rw-r--r--src/rt/Lisp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/Lisp.cc b/src/rt/Lisp.cc
index fae3e02f..045d087c 100644
--- a/src/rt/Lisp.cc
+++ b/src/rt/Lisp.cc
@@ -327,7 +327,7 @@ namespace OpenAxiom {
unimplemented(x);
if (auto op = special_operator(*s))
return op(ctx, x);
- auto fun = symbol_function(ctx, *s);
+ return to_value( symbol_function(ctx, *s));
}
Value