]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/vlists/vlists.factor
basis: ERROR: changes.
[factor.git] / basis / vlists / vlists.factor
index 79870b483f35561109d46d7061123456f1920f3e..97e9b29cccfbb1f54dd626a45f3458d76ee60a13 100644 (file)
@@ -33,7 +33,7 @@ M: vlist ppush
 ERROR: empty-vlist-error ;
 
 M: vlist ppop
-    [ empty-vlist-error ]
+    [ throw-empty-vlist-error ]
     [ [ length>> 1 - ] [ vector>> ] bi vlist boa ] if-empty ;
 
 M: vlist clone