]> gitweb.factorcode.org Git - factor.git/blobdiff - core/continuations/continuations.factor
change ERROR: words from throw-foo back to foo.
[factor.git] / core / continuations / continuations.factor
index 78911cea79e3dd8ee2cdea8e28938668a874758c..552143b7ff3e1e23944c0bd0d19957bf1aba81d7 100644 (file)
@@ -52,7 +52,7 @@ C: <continuation> continuation
 ERROR: not-a-continuation object ;
 
 : >continuation< ( continuation -- data call retain name catch )
-    dup continuation? [ throw-not-a-continuation ] unless
+    dup continuation? [ not-a-continuation ] unless
     { [ data>> ] [ call>> ] [ retain>> ] [ name>> ] [ catch>> ] } cleave ; inline
 
 PRIVATE>