aboutsummaryrefslogtreecommitdiffstats
path: root/chez.init
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:06:40 -0800
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:06:40 -0800
commita69c9fb665459e2bfdbda1bf80741a0af31a7faf (patch)
treef0bc974f8805049e6b9a4e6864886298fbaa05a4 /chez.init
parent4684239efa63dc1b2c1cbe37ef7d3062029f5532 (diff)
downloadslib-a69c9fb665459e2bfdbda1bf80741a0af31a7faf.tar.gz
slib-a69c9fb665459e2bfdbda1bf80741a0af31a7faf.zip
New upstream version 3b5upstream/3b5upstream
Diffstat (limited to 'chez.init')
-rwxr-xr-x[-rw-r--r--]chez.init8
1 files changed, 4 insertions, 4 deletions
diff --git a/chez.init b/chez.init
index dd923f9..cb85c4a 100644..100755
--- a/chez.init
+++ b/chez.init
@@ -22,7 +22,7 @@
;;; (scheme-implementation-version) should return a string describing
;;; the version the scheme implementation loading this file.
-(define (scheme-implementation-version) "6.0a")
+(define (scheme-implementation-version) "8.4")
;;; (implementation-vicinity) should be defined to be the pathname of
;;; the directory where any auxillary files to your Scheme
@@ -30,7 +30,7 @@
(define implementation-vicinity
(let ((impl-path
(or (getenv "CHEZ_IMPLEMENTATION_PATH")
- "/usr/unsup/scheme/chez/")))
+ "/usr/local/lib/chez/")))
(lambda () impl-path)))
;;; (library-vicinity) should be defined to be the pathname of the
@@ -305,8 +305,8 @@
;;; MOST-POSITIVE-FIXNUM is used in modular.scm
;; Chez's MOST-POSITIVE-FIXNUM is a thunk rather than a number.
-(if (procedure? most-positive-fixnum)
- (set! most-positive-fixnum (most-positive-fixnum)))
+;; (if (procedure? most-positive-fixnum)
+;; (set! most-positive-fixnum (most-positive-fixnum)))
;;; Return argument
(define (identity x) x)