]> gitweb.factorcode.org Git - factor.git/commitdiff
colors: fix using list, silly auto-use.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sun, 21 Oct 2012 19:09:59 +0000 (12:09 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 21 Oct 2012 19:09:59 +0000 (12:09 -0700)
basis/colors/gray/gray.factor
extra/colors/cmyk/cmyk-docs.factor
extra/colors/cmyk/cmyk.factor

index 680d08713061147c8ae7e14364228fe0094e79aa..3a798f5ae18dbf45f1811b305dac4666a0fd2d42 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Eduardo Cavazos.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: colors kernel accessors ;
+USING: accessors colors kernel math ;
 IN: colors.gray
 
 TUPLE: gray < color { gray read-only } { alpha read-only } ;
index 9bb31df35014d140e232d73a6c76df1ff1ba53e5..b797dad8594a083035d4d32dc1f9bb035afe10d8 100644 (file)
@@ -1,5 +1,5 @@
-
-IN: colors.cmyx
+USING: help.markup help.syntax ;
+IN: colors.cmyk
 
 HELP: cmyka
 { $class-description "The class of CMYK (Cyan, Magenta, Yellow, Black) colors with an alpha channel. All slots store values in the interval " { $snippet "[0,1]" } "." } ;
index bab472ee83c2df40471c12e619dbdc7568c4da3b..ad38089a74dd137db4f4b792ac2c08cdb635a7f1 100644 (file)
@@ -1,7 +1,8 @@
 ! Copyright (C) 2012 John Benediktsson
 ! See http://factorcode.org/license.txt for BSD license
 
-USING: accessors colors kernel math math.order ;
+USING: accessors combinators colors colors.gray kernel math
+math.order ;
 
 IN: colors.cmyk