From 1bf65e6dc5a91fd8bd2fa3ca22c5af53f5ea32f1 Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Sat, 13 Sep 2008 11:12:36 -0500 Subject: [PATCH] tools.annotations: Use fry in '(watch-vars)' --- basis/tools/annotations/annotations.factor | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/basis/tools/annotations/annotations.factor b/basis/tools/annotations/annotations.factor index 6a7e33e615..c836bfc2b6 100755 --- a/basis/tools/annotations/annotations.factor +++ b/basis/tools/annotations/annotations.factor @@ -55,11 +55,12 @@ M: word reset dup [ (watch) ] annotate ; : (watch-vars) ( quot word vars -- newquot ) - [ - "--- Entering: " write swap . - "--- Variable values:" print - [ dup get ] H{ } map>assoc describe - ] 2curry prepose ; + rot + '[ + "--- Entering: " write _ . + "--- Variable values:" print _ [ dup get ] H{ } map>assoc describe + @ + ] ; : watch-vars ( word vars -- ) dupd [ (watch-vars) ] 2curry annotate ;