]> gitweb.factorcode.org Git - factor.git/blobdiff - core/generic/math/math.factor
change ERROR: words from throw-foo back to foo.
[factor.git] / core / generic / math / math.factor
index 6b320bbf624d59f9d1297efb5398e589427f1eb0..96a3edf9c62c51dc34079cbfc3a5689a46ed0cdb 100644 (file)
@@ -45,7 +45,7 @@ PRIVATE>
 ERROR: no-math-method left right generic ;
 
 : default-math-method ( generic -- quot )
-    [ throw-no-math-method ] curry [ ] like ;
+    [ no-math-method ] curry [ ] like ;
 
 <PRIVATE