Change DELW signature

This commit is contained in:
Virgil Dupras 2020-04-09 08:26:27 -04:00
parent 68f359d6c2
commit 6f082b0b13
2 changed files with 3 additions and 3 deletions

View File

@ -38,8 +38,8 @@ CREATE x -- Create cell named x. Doesn't allocate a PF.
words are *not* executed.
COMPILE x -- Meta compiles. Kind of blows the mind. See below.
CONSTANT x n -- Creates cell x that when called pushes its value
DELW x -- Delete word x. If it shadows another definition,
that definition is unshadowed.
DELW a -- Delete wordref at a. If it shadows another
definition, that definition is unshadowed.
DOES> -- See description at top of file
IMMED? a -- f Checks whether wordref at a is immediate.
IMMEDIATE -- Flag the latest defined word as immediate.

View File

@ -134,5 +134,5 @@
;
: DELW
' 1 - 0 SWAP C!
1 - 0 SWAP C!
;