X-Git-Url: http://git.subgeniuskitty.com/pforth/.git/blobdiff_plain/e0d21c12cf924ad826eb0e73a10c5167f0195f65..5a30561336c83c45b348c1dc59fb9dc4dd15237c:/fth/system.fth diff --git a/fth/system.fth b/fth/system.fth index c1b7f66..5830cce 100644 --- a/fth/system.fth +++ b/fth/system.fth @@ -721,9 +721,11 @@ ustack 0stackp variable TRACE-INCLUDE : INCLUDE.MARK.START ( c-addr u -- , mark start of include for FILE?) - " ::::" pad $MOVE - pad $APPEND - pad ['] noop (:) + dup 5 + allocate throw >r + " ::::" r@ $move + r@ $append + r@ ['] noop (:) + r> free throw ; : INCLUDE.MARK.END ( -- , mark end of include )