From eb5e72c7d3439d51f067abd51cdeb003c3e616e7 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 29 Aug 2008 10:26:53 -0500 Subject: [PATCH] new accessors --- basis/tools/annotations/annotations.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/tools/annotations/annotations.factor b/basis/tools/annotations/annotations.factor index 023993c435..96c2ec2fcc 100755 --- a/basis/tools/annotations/annotations.factor +++ b/basis/tools/annotations/annotations.factor @@ -31,7 +31,7 @@ M: word reset : word-inputs ( word -- seq ) stack-effect [ - >r datastack r> effect-in length tail* + >r datastack r> in>> length tail* ] [ datastack ] if* ; @@ -44,7 +44,7 @@ M: word reset : leaving ( str -- ) "/-- Leaving: " write dup . stack-effect [ - >r datastack r> effect-out length tail* stack. + >r datastack r> out>> length tail* stack. ] [ .s ] if* "\\--" print flush ;