compile-all fix

slava 2006-08-18 03:52:59 +00:00
parent 816f60a6e7
commit 6cd9b95df8
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,6 @@
- declaration to do:
- bootstrap speedup with compiling recursives
- load cocoa before 'recompile' call
- RT_WORD should refer to XTs not word objects.
- fix contribs: boids, automata
- sometimes darcs get fails with the httpd

View File

@ -24,7 +24,8 @@ words ;
dup [ f "no-effect" set-word-prop ] each
[ try-compile ] each ;
: compile-all ( -- ) vocabs compile-vocabs ;
: compile-all ( -- )
vocabs compile-vocabs changed-words get clear-hash ;
: compile-quot ( quot -- word )
define-temp "compile" get [ dup compile ] when ;