projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2d6cf6
)
Fixed bug whereby (LOAD '("file" ... )) would load only the last file.
author
Stephen Adams
<edu/mit/csail/zurich/adams>
Fri, 4 Aug 1995 17:35:53 +0000
(17:35 +0000)
committer
Stephen Adams
<edu/mit/csail/zurich/adams>
Fri, 4 Aug 1995 17:35:53 +0000
(17:35 +0000)
v8/src/runtime/load.scm
patch
|
blob
|
history
diff --git
a/v8/src/runtime/load.scm
b/v8/src/runtime/load.scm
index 6d263183dd2b879881ad958c73581a49c2985929..4556e6fcac28ac5e18c0c64849f0aafc1e6d6121 100644
(file)
--- a/
v8/src/runtime/load.scm
+++ b/
v8/src/runtime/load.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: load.scm,v 14.5
1 1995/07/27 20:22:21
adams Exp $
+$Id: load.scm,v 14.5
2 1995/08/04 17:35:53
adams Exp $
Copyright (c) 1988-95 Massachusetts Institute of Technology
@@
-108,7
+108,8
@@
MIT in each case. |#
purify?
load-noisily?))))
(cond (last-file? (load-it))
- (load-noisily? (write-line (load-it)))))))))))
+ (load-noisily? (write-line (load-it)))
+ (else (load-it) unspecific)))))))))
(if (pair? filename/s)
(let loop ((filenames filename/s))
(if (null? (cdr filenames))