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 ;