]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/game/models/collada/collada.factor
change ERROR: words from throw-foo back to foo.
[factor.git] / extra / game / models / collada / collada.factor
index 3342aceeddfcd0adf3ae2a6e26166ceb8bd58125..18773e79a46f35c64bb82d3f8e11fc81dc07f158 100644 (file)
@@ -24,12 +24,12 @@ SYMBOLS: up-axis unit-ratio ;
 
 : x/ ( tag child-name -- child-tag )
     [ tag-named ]
-    [ rot dup [ drop throw-missing-child ] unless 2nip ]
+    [ rot dup [ drop missing-child ] unless 2nip ]
     2bi ; inline
 
 : x@ ( tag attr-name -- attr-value )
     [ attr ]
-    [ rot dup [ drop throw-missing-attr ] unless 2nip ]
+    [ rot dup [ drop missing-attr ] unless 2nip ]
     2bi ; inline
 
 : xt ( tag -- content ) children>string ;