aboutsummaryrefslogtreecommitdiff
path: root/src/interp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp')
-rw-r--r--src/interp/scan.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/scan.boot b/src/interp/scan.boot
index 6f5f5776..18a858a5 100644
--- a/src/interp/scan.boot
+++ b/src/interp/scan.boot
@@ -196,10 +196,10 @@ scanPunCons()==
a := MAKE_-BVEC 256
-- SETSIZE(a,256)
for i in 0..255 repeat
- BVEC_-SETELT(a,i,0)
+ bitmask(a,i) := 0
for k in listing repeat
if not startsId? k.0
- then BVEC_-SETELT(a,codePoint stringChar(k,0),1)
+ then bitmask(a,codePoint stringChar(k,0)) := 1
a
scanPun:=scanPunCons()