From: Chris Hanson Date: Thu, 20 Dec 2001 06:21:45 +0000 (+0000) Subject: Eliminate references to SYSTEM-GLOBAL-SYNTAX-TABLE. X-Git-Tag: 20090517-FFI~2340 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=22b12e8e27d35f19470352fe7ee9aa18bc55cec5;p=mit-scheme.git Eliminate references to SYSTEM-GLOBAL-SYNTAX-TABLE. --- diff --git a/v7/src/rcs/compile.scm b/v7/src/rcs/compile.scm index d92c0e5ef..a2094e055 100644 --- a/v7/src/rcs/compile.scm +++ b/v7/src/rcs/compile.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: compile.scm,v 1.3 2001/08/15 03:10:15 cph Exp $ +$Id: compile.scm,v 1.4 2001/12/20 06:21:45 cph Exp $ Copyright (c) 2000, 2001 Massachusetts Institute of Technology @@ -24,7 +24,5 @@ USA. (with-working-directory-pathname (directory-pathname (current-load-pathname)) (lambda () - (for-each (lambda (filename) - (compile-file filename '() system-global-syntax-table)) - '("object" "format" "nparse" "logmer")) + (for-each compile-file '("object" "format" "nparse" "logmer")) (cref/generate-constructors "rcs"))) \ No newline at end of file