From 8478be295d2eeef1066cc412191c324df0eef14b Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sat, 21 Jul 2012 10:44:54 -0700 Subject: [PATCH] make: switch to with-variable instead of with-scope. --- core/make/make.factor | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/core/make/make.factor b/core/make/make.factor index 6796730e6d..7636ac0109 100644 --- a/core/make/make.factor +++ b/core/make/make.factor @@ -9,19 +9,15 @@ SYMBOL: building : make-sequence ( quot exemplar -- seq ) [ - [ - 32 swap new-resizable [ - building set call - ] keep - ] keep like - ] with-scope ; inline + 32 swap new-resizable [ + building [ call ] with-variable + ] keep + ] keep like ; inline : make-assoc ( quot exemplar -- assoc ) - [ - 5 swap new-assoc [ - building set call - ] keep - ] with-scope ; inline + 5 swap new-assoc [ + building [ call ] with-variable + ] keep ; inline PRIVATE>