diff options
Diffstat (limited to 'src/rt')
-rw-r--r-- | src/rt/Lisp.cc | 2 |
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 |