From 643b3b7dcb413e4e46286320f7533eb172ed4f1e Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sun, 24 Feb 2008 17:40:39 -0600 Subject: [PATCH] Fix bootstrap --- core/bootstrap/stage2.factor | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/bootstrap/stage2.factor b/core/bootstrap/stage2.factor index 3bc82bbe6a..195c0f65ec 100755 --- a/core/bootstrap/stage2.factor +++ b/core/bootstrap/stage2.factor @@ -29,9 +29,7 @@ SYMBOL: bootstrap-time : compile-remaining ( -- ) "Compiling remaining words..." print flush - vocabs [ - words "compile" "compiler" lookup execute - ] each ; + vocabs [ words compile ] each ; : count-words ( pred -- ) all-words swap subset length number>string write ;