aboutsummaryrefslogtreecommitdiffstats
path: root/chez.init
diff options
context:
space:
mode:
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)