From 355062134104df849ff38799356effb28ebf0352 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 3 Jun 2009 21:22:19 -0500 Subject: [PATCH] rename run-length's uncompress word --- basis/compression/run-length/run-length.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/compression/run-length/run-length.factor b/basis/compression/run-length/run-length.factor index d281b0718a..6553860546 100644 --- a/basis/compression/run-length/run-length.factor +++ b/basis/compression/run-length/run-length.factor @@ -3,5 +3,5 @@ USING: arrays grouping sequences ; IN: compression.run-length -: run-length-uncompress8 ( byte-array -- byte-array' ) +: run-length-uncompress ( byte-array -- byte-array' ) 2 group [ first2 ] map concat ;