diff options
Diffstat (limited to 'src/interp/compiler.boot')
-rw-r--r-- | src/interp/compiler.boot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/compiler.boot b/src/interp/compiler.boot index 508248a9..afe8a03d 100644 --- a/src/interp/compiler.boot +++ b/src/interp/compiler.boot @@ -1846,8 +1846,8 @@ modeEqual(x,y) == for x1 in xl repeat for y1 in yl repeat modeEqual(x1,y1) => - xl := delete(x1,xl) - yl := delete(y1,yl) + xl := remove(xl,x1) + yl := remove(yl,y1) return nil xl or yl => nil true |