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:
2ba9af4
)
Allow syntax table to be explicitly defaulted.
author
Chris Hanson
<org/chris-hanson/cph>
Tue, 18 Dec 2001 22:17:06 +0000
(22:17 +0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Tue, 18 Dec 2001 22:17:06 +0000
(22:17 +0000)
v7/src/runtime/load.scm
patch
|
blob
|
history
diff --git
a/v7/src/runtime/load.scm
b/v7/src/runtime/load.scm
index 9e52c24de97906c284a63869956cb15e63d73ecb..7ef0aea3a28064ccca3a4c218efbb264ed3107f0 100644
(file)
--- a/
v7/src/runtime/load.scm
+++ b/
v7/src/runtime/load.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: load.scm,v 14.5
8 2001/12/18 21:21:43
cph Exp $
+$Id: load.scm,v 14.5
9 2001/12/18 22:17:06
cph Exp $
Copyright (c) 1988-2001 Massachusetts Institute of Technology
@@
-73,7
+73,8
@@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
(->environment environment)))
(syntax-table
(if (or (default-object? syntax-table)
- (eq? syntax-table default-object))
+ (eq? syntax-table default-object)
+ (eq? syntax-table 'DEFAULT))
default-object
(guarantee-syntax-table syntax-table 'LOAD)))
(purify?