From 435a14f3b654193e16d35c20314189cfde4c7c1c Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 13 Feb 2009 11:57:45 -0600 Subject: [PATCH] add stack effect, oops --- basis/tools/hexdump/hexdump.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/tools/hexdump/hexdump.factor b/basis/tools/hexdump/hexdump.factor index 335e32e0a3..63b55729fb 100644 --- a/basis/tools/hexdump/hexdump.factor +++ b/basis/tools/hexdump/hexdump.factor @@ -27,7 +27,7 @@ IN: tools.hexdump : write-hex-line ( bytes lineno -- ) write-offset [ >hex-digits write ] [ >ascii write ] bi nl ; -: hexdump-bytes +: hexdump-bytes ( bytes -- ) [ length write-header ] [ 16 [ write-hex-line ] each-index ] bi ;