]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/calendar/format/format.factor
change ERROR: words from throw-foo back to foo.
[factor.git] / basis / calendar / format / format.factor
index bc07f6e9eeb026925b5a1106fc2952f3f5557439..a7f2c589a03f8e81e1aba13d629d311d56576afe 100644 (file)
@@ -202,7 +202,7 @@ M: timestamp year. ( timestamp -- )
 ERROR: invalid-timestamp-format ;
 
 : check-timestamp ( obj/f -- obj )
-    [ throw-invalid-timestamp-format ] unless* ;
+    [ invalid-timestamp-format ] unless* ;
 
 : read-token ( seps -- token )
     [ read-until ] keep member? check-timestamp drop ;