]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix for change from worddef>list to word-parameter.
authorChris Double <chris.double@double.co.nz>
Fri, 27 Aug 2004 02:34:09 +0000 (02:34 +0000)
committerChris Double <chris.double@double.co.nz>
Fri, 27 Aug 2004 02:34:09 +0000 (02:34 +0000)
Fix for moving arithmetic functions into math vocab.

contrib/cont-responder/browser.factor
contrib/cont-responder/cont-examples.factor
contrib/cont-responder/cont-responder.factor
contrib/cont-responder/todo-example.factor
contrib/cont-responder/todo.factor
contrib/parser-combinators/lazy-examples.factor
contrib/parser-combinators/lazy.factor
contrib/parser-combinators/parser-combinators.factor

index 66e8b8c2e4554f93342c06eb1f49aa3f3bc6ed50..79b89fdbad9538456ec574aaaea4c65a50414afd 100644 (file)
@@ -149,7 +149,7 @@ USE: logging
 
 : word-uses ( word -- list )
   #! Return a list of vocabularies that the given word uses.
-  worddef>list flatten [ word? ] subset [
+  word-parameter flatten [ word? ] subset [
     word-vocabulary
   ] map ;
 
index 503ae7c91fa852df4be3038c904297b14f4d573d..bc2ea066f2e372be4ebcebd8d27e696271e70afc 100644 (file)
@@ -30,7 +30,7 @@ USE: stdio
 USE: html
 USE: lists
 USE: strings
-USE: arithmetic
+USE: math
 USE: namespaces
 USE: prettyprint
 USE: unparser
index ab31e2bf71a288c7f322caac2572b80332cebe78..8531d5a84743f9ef657aa627023ce4de6c50b354 100644 (file)
@@ -26,7 +26,7 @@ IN: cont-responder
 USE: stdio
 USE: httpd
 USE: httpd-responder
-USE: arithmetic
+USE: math
 USE: random
 USE: continuations
 USE: format
index d15af8f4942198d3b1d085a59e166216999af9d8..f43d86e51acdaff64cf838debed8ca35a1e5f7b7 100644 (file)
@@ -42,7 +42,7 @@ USE: cont-examples
 USE: regexp
 USE: prettyprint
 USE: todo
-USE: arithmetic
+USE: math
 USE: logic
 USE: kernel
 USE: lazy
index 141f28c7d235847813a579cbac45a5de1c8552e8..2f8714606436322f78e1ea1081c714745965e939 100644 (file)
@@ -31,7 +31,7 @@ USE: strings
 USE: streams
 USE: namespaces
 USE: lists
-USE: arithmetic
+USE: math
 USE: stdio
 USE: kernel
 USE: prettyprint
index 5cb82e4b0a6fcfb4b4aeeaf311f253fd91161bae..3e5c05e23b381beeaf846d49eb0220ee7eb52807 100644 (file)
@@ -23,7 +23,7 @@
 IN: lazy-examples
 USE: lazy
 USE: stack
-USE: arithmetic
+USE: math
 USE: lists
 USE: combinators
 USE: kernel
index 696e6d452936bb66f67ebd7c9838816f4892de44..21199a8952a8a7b6149021e0e7115c7f02c08827 100644 (file)
@@ -23,7 +23,7 @@
 IN: lazy
 USE: lists
 USE: stack
-USE: arithmetic
+USE: math
 USE: stdio
 USE: prettyprint
 USE: kernel
index 6e2bcb65a4b8903911d583dccc2ada3bf23ab74e..b21fea00e79fcd138dd01244a5f49262fc2a3622 100644 (file)
@@ -25,7 +25,7 @@ USE: lazy
 USE: stack
 USE: lists
 USE: strings
-USE: arithmetic
+USE: math
 USE: logic
 USE: kernel
 USE: combinators