aboutsummaryrefslogtreecommitdiff
path: root/src/interp/lisplib.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/lisplib.boot')
-rw-r--r--src/interp/lisplib.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/lisplib.boot b/src/interp/lisplib.boot
index fa7b3fa7..056a9603 100644
--- a/src/interp/lisplib.boot
+++ b/src/interp/lisplib.boot
@@ -160,7 +160,7 @@ loadLib cname ==
else
REMPROP(cname,'NILADIC)
MAKEPROP(cname,'LOADED,fullLibName)
- if $InteractiveMode then $CategoryFrame := [[nil]]
+ if $InteractiveMode then $CategoryFrame := [$EmptyEnvironment]
stopTimingProcess 'load
'T
@@ -178,7 +178,7 @@ loadLibNoUpdate(cname, libName, fullLibName) ==
clearConstructorCache cname
installConstructor(cname,kind)
MAKEPROP(cname,'LOADED,fullLibName)
- if $InteractiveMode then $CategoryFrame := [[nil]]
+ if $InteractiveMode then $CategoryFrame := [$EmptyEnvironment]
stopTimingProcess 'load
'T