aboutsummaryrefslogtreecommitdiffstats
path: root/sisc.init
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:40 -0800
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:40 -0800
commit4684239efa63dc1b2c1cbe37ef7d3062029f5532 (patch)
tree606a687e9279e9bf6048925878968df9875a4973 /sisc.init
parent64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34 (diff)
downloadslib-4684239efa63dc1b2c1cbe37ef7d3062029f5532.tar.gz
slib-4684239efa63dc1b2c1cbe37ef7d3062029f5532.zip
Import Upstream version 3b1upstream/3b1
Diffstat (limited to 'sisc.init')
-rw-r--r--sisc.init39
1 files changed, 24 insertions, 15 deletions
diff --git a/sisc.init b/sisc.init
index a042bb7..630136b 100644
--- a/sisc.init
+++ b/sisc.init
@@ -17,18 +17,22 @@
(define (program-vicinity)
(current-directory))
-(define (library-vicinity)
- (string-append
- (or (getenv "sisc.slib")
- (getenv "sisc.lib")
- (error "You must define the sisc.slib or sisc.lib property"))
- "/"))
-
-(define (implementation-vicinity)
- (string-append
- (or (getenv "sisc.home")
- (error "You must define the sisc.home property"))
- "/"))
+(define library-vicinity
+ (let ((lib-path
+ (string-append
+ (or (getenv "sisc.slib")
+ (getenv "sisc.lib")
+ (error "You must define the sisc.slib or sisc.lib property"))
+ "/")))
+ (lambda () lib-path)))
+
+(define implementation-vicinity
+ (let ((impl-path
+ (string-append
+ (or (getenv "sisc.home")
+ (error "You must define the sisc.home property"))
+ "/")))
+ (lambda () impl-path)))
(define (user-vicinity) "")
@@ -102,6 +106,7 @@
;(SLIB:LOAD-COMPILED "filename")
vicinity
srfi-59
+ srfi-96
;;; Scheme report features
;; R5RS-compliant implementations should provide all 9 features.
@@ -141,7 +146,7 @@
;;; Other common features
- srfi ;srfi-0, COND-EXPAND finds all srfi-*
+ srfi-0 ;srfi-0, COND-EXPAND finds all srfi-*
;;; sicp ;runs code from Structure and
;Interpretation of Computer
;Programs by Abelson and Sussman.
@@ -335,9 +340,13 @@
;;@ At this point SLIB:LOAD must be able to load SLIB files.
(define slib:load slib:load-source)
-;; If your implementation provides R4RS macros:
+;;; If your implementation provides R4RS macros:
(define macro:eval slib:eval)
-(define macro:load load)
+(define macro:load slib:load-source)
+
+;;; If your implementation provides syntax-case macros:
+;;(define syncase:eval slib:eval)
+;;(define syncase:load slib:load-source)
;@
(define gentemp gensym)