aboutsummaryrefslogtreecommitdiff
path: root/src/interp/category.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/category.boot')
-rw-r--r--src/interp/category.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/category.boot b/src/interp/category.boot
index d9ad2e7e..3ec61377 100644
--- a/src/interp/category.boot
+++ b/src/interp/category.boot
@@ -48,7 +48,7 @@ $NewCatVec := nil
++ Returns true if `a' is a category (runtime) object.
isCategory: %Thing -> %Boolean
isCategory a ==
- REFVECP a and #a > 5 and getShellEntry(a,3) = $Category
+ vector? a and #a > 5 and getShellEntry(a,3) = $Category
++ Return true if the form `x' designates an instantiaion of a
++ category constructor known to the global database or the
@@ -353,7 +353,7 @@ FindFundAncs l ==
CatEval: %Thing -> %Shell
CatEval x ==
- REFVECP x => x
+ vector? x => x
e :=
$InteractiveMode => $CategoryFrame
$e