#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/decls.scm,v 1.38 1992/05/26 16:09:32 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/decls.scm,v 1.39 1992/08/27 06:32:33 jinx Exp $
-Copyright (c) 1989-92 Massachusetts Institute of Technology
+Copyright (c) 1989-1992 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
(list-transform-positive dependencies
(if source-time
(lambda (dependency)
- (< source-time (bin-time dependency)))
+ (let ((bin-time (bin-time dependency)))
+ (or (not bin-time)
+ (< source-time bin-time))))
(lambda (dependency)
dependency ;ignore
true))))))))
(sf-class (sf-dependent 'class-syntax-table)))
(for-each sf-global
'("ansi"
+ "bios"
"class"
"clscon"
"clsmac"
(sf-class "bufwfs" "bufwin" "utlwin" "window" "class" "buffer" "struct")
(sf-class "bufwiu" "bufwin" "utlwin" "window" "class" "buffer" "struct")
(sf-class "bufwmc" "bufwin" "utlwin" "window" "class" "buffer" "struct")
- (sf-class "buffrm" "bufwin" "window" "class" "struct"))
+ (sf-class "buffrm" "bufwin" "window" "class" "struct"))
\ No newline at end of file