]> gitweb.factorcode.org Git - factor.git/commitdiff
factor 0.66 ready
authorSlava Pestov <slava@factorcode.org>
Sun, 10 Oct 2004 01:58:16 +0000 (01:58 +0000)
committerSlava Pestov <slava@factorcode.org>
Sun, 10 Oct 2004 01:58:16 +0000 (01:58 +0000)
library/compiler/compile-all.factor
library/compiler/dummy-compiler.factor

index f9fc3f8baa630c45244b6dcf807b298fe69aed4f..68b83c50d045166934183f4a23518c79977dfc22 100644 (file)
@@ -115,5 +115,5 @@ SYMBOL: compilable-word-list
 : init-compiler ( -- )
     #! Compile all words.
     compilable-word-list get [
-        [ compile ] [ cannot-compile ] catch
+        [ compile ] [ [ cannot-compile ] when ] catch
     ] each ;
index 80a379f28aa3714f1e6e3ff072541c1e580f144a..1d18cd8f89ffbcff038258d8db9e70e1df29d7d0 100644 (file)
@@ -1,5 +1,7 @@
 ! Loaded on non-x86 platforms.
+IN: compiler
 
 SYMBOL: compilable-word-list
 : compilable-words f ;
+: init-assembler ;
 : init-compiler ;