From 4dfec2ebcd386c849b027b4ff7d33cdd198eabc4 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 31 Mar 2000 14:19:37 +0000 Subject: [PATCH] Enumerate the files to be compiled, rather than compiling the entire directory. --- v7/src/rcs/compile.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/v7/src/rcs/compile.scm b/v7/src/rcs/compile.scm index f43fa710b..4b542045e 100644 --- a/v7/src/rcs/compile.scm +++ b/v7/src/rcs/compile.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: compile.scm,v 1.1 2000/03/31 14:10:53 cph Exp $ +$Id: compile.scm,v 1.2 2000/03/31 14:19:37 cph Exp $ Copyright (c) 2000 Massachusetts Institute of Technology @@ -23,9 +23,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (with-working-directory-pathname (directory-pathname (current-load-pathname)) (lambda () - (fluid-let ((sf/default-syntax-table system-global-syntax-table)) - (sf-directory ".")) + (for-each (lambda (filename) + (compile-file filename '() system-global-syntax-table)) + '("object" "format" "nparse" "logmer")) (cref/generate-constructors "rcs") (sf "rcs.con") - (sf "rcs.ldr") - (compile-directory "."))) \ No newline at end of file + (sf "rcs.ldr"))) \ No newline at end of file -- 2.25.1