swap over == tuck

This commit is contained in:
Koichi Nakamura 2021-12-03 12:31:08 +09:00
parent 691c02e23b
commit 8c7c3f42ee
2 changed files with 3 additions and 3 deletions

View file

@ -1893,7 +1893,7 @@ variable inputstreams
: push-inputstream ( file -- )
inputstream% %allot \ addr
swap over input>file !
tuck input>file !
0 over input>lineno !
inputstreams @ over input>next !
inputstreams !

View file

@ -28,8 +28,8 @@ s" Index out of range" exception constant OUT-OF-RANGE export
array% %allocate throw
( n capa addr )
over cells allocate throw over array>buf !
swap over array>capa !
swap over array>size !
tuck array>capa !
tuck array>size !
;
: make-array ( n -- arr )