aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-util.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/g-util.boot')
-rw-r--r--src/interp/g-util.boot6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/interp/g-util.boot b/src/interp/g-util.boot
index 27f870ce..486a7b34 100644
--- a/src/interp/g-util.boot
+++ b/src/interp/g-util.boot
@@ -38,7 +38,6 @@ import sys_-utility
namespace BOOT
module g_-util where
- atomic?: %Thing -> %Boolean
getTypeOfSyntax: %Form -> %Mode
pairList: (%List %Form,%List %Form) -> %List %Pair(%Form,%Form)
mkList: %List %Form -> %Form
@@ -107,11 +106,6 @@ isSharpVarWithNum x ==
ok := digit? d => c := 10*c + DIG2FIX d
if ok then c else nil
-++ Returns true if `x' is either an atom or a quotation.
-atomic? x ==
- cons? x => x.op is 'QUOTE
- true
-
--% Sub-domains information handlers
++ If `dom' is a subdomain, return its immediate super-domain.