]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/colors/flex-hex/flex-hex.factor
sequences: bound -> index-or-length
[factor.git] / extra / colors / flex-hex / flex-hex.factor
index d75f3b2930336ef780862e17630a79607c2abdc4..b964d6ed50966fb01ccd84b30d9018da926676db 100644 (file)
@@ -19,8 +19,8 @@ IN: colors.flex-hex
 
 : hex-rgb ( array -- array' )
     [
-        8 bound tail*
-        2 bound head
+        8 index-or-length tail*
+        2 index-or-length head
         2 CHAR: 0 pad-head
     ] map ;