aboutsummaryrefslogtreecommitdiff
path: root/src/interp/c-util.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/c-util.boot')
-rw-r--r--src/interp/c-util.boot4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interp/c-util.boot b/src/interp/c-util.boot
index 170f16f8..c0ccee94 100644
--- a/src/interp/c-util.boot
+++ b/src/interp/c-util.boot
@@ -33,6 +33,7 @@
import g_-util
+import g_-opt
namespace BOOT
module c_-util where
@@ -464,7 +465,8 @@ isFunction(x,e) ==
isLiteral: (%Symbol,%Env) -> %Boolean
isLiteral(x,e) ==
- get(x,"isLiteral",e)
+ get(x,"isLiteral",e) => true
+ false
makeLiteral: (%Symbol,%Env) -> %Thing