--- gforth/stuff.fs 2002/09/14 08:20:20 1.22 +++ gforth/stuff.fs 2003/01/22 18:52:47 1.25 @@ -66,8 +66,10 @@ AUser CSP \G equivalent to @code{] literal} ] postpone literal ; +[ifundef] in-dictionary? : in-dictionary? ( x -- f ) forthstart dictionary-end within ; +[endif] : in-return-stack? ( addr -- f ) rp0 @ swap - [ forthstart 6 cells + ]L @ u< ; @@ -126,3 +128,39 @@ AUser CSP 2drop repeat - + dup >r resize throw r> ; + +\ ]] ... [[ + +: compile-literal ( n -- ) + postpone literal ; + +: [[ ( -- ) +\G switch from postpone state to compile state + \ this is only a marker; it is never really interpreted + compile-only-error ; immediate + +: postponer ( c-addr u -- ) + 2dup find-name dup if ( c-addr u nt ) + nip nip name>comp + 2dup [comp'] [[ d= if + 2drop ['] compiler is parser + else + postpone, + endif + else + drop + 2dup snumber? dup if + 0> IF + swap postpone literal postpone compile-literal + THEN + postpone Literal postpone compile-literal + 2drop + ELSE + drop no.extensions + THEN + then ; + +: ]] ( -- ) + \ switch into postpone state + ['] postponer is parser state on ; immediate restrict +