]> gitweb.factorcode.org Git - factor.git/commitdiff
fix load errors
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 19 Nov 2009 00:53:03 +0000 (18:53 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 19 Nov 2009 00:53:03 +0000 (18:53 -0600)
basis/uuid/uuid.factor
extra/zoneinfo/zoneinfo.factor

index 4d284a1a40653ddeedbf61871bb57e50c654c7e1..118db67d907eed15410fa524f4dbe932637d6b70 100644 (file)
@@ -12,7 +12,7 @@ IN: uuid
     ! 0x01b21dd213814000L is the number of 100-ns intervals
     ! between the UUID epoch 1582-10-15 00:00:00 and the 
     ! Unix epoch 1970-01-01 00:00:00.
-    micros 10 * HEX: 01b21dd213814000 +
+    system-micros 10 * HEX: 01b21dd213814000 +
     [ -48 shift HEX: 0fff bitand ] 
     [ -32 shift HEX: ffff bitand ]
     [ HEX: ffffffff bitand ]
index f93531cb8103a47f619403d82c3379b6beedb80f..e298046dd3f0462ad51432a2482d357820779746 100644 (file)
@@ -41,21 +41,6 @@ TUPLE: leap ;
         [ string>number ]
     } case ;
 
-/*
-: rule-on ( string -- obj )
-    {
-        { [ dup string>number ] [ ] }
-        { [ "last" ?head ] [ month-abbreviation>n ] }
-        { [ ] [ month-abbreviation>n ] }
-    } cond ;
-*/
-
-            ! [ string>number -1/0. or ]
-            ! [ rule-to ]
-            
-            ! [ month-abbreviation>n ]
-            ! [ rule-on ]
-
 : raw-rule>rule ( raw-rule -- rule )
     ;