diff options
Diffstat (limited to 'RScheme.init')
-rw-r--r-- | RScheme.init | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/RScheme.init b/RScheme.init index 4f80b41..87aacdb 100644 --- a/RScheme.init +++ b/RScheme.init @@ -48,7 +48,7 @@ ;; Use this path if your scheme does not support GETENV ;; or if SCHEME_LIBRARY_PATH is not set. (case (software-type) - ((unix) "/usr/share/slib/") + ((unix) "/usr/lib/slib/") ((vms) "lib$scheme:") ((ms-dos) "C:\\SLIB\\") (else ""))))) @@ -211,6 +211,9 @@ )) +;;@ (FILE-POSITION <port> . <k>) +(define (file-position . args) #f) + ;;; (OUTPUT-PORT-WIDTH <port>) (define (output-port-width . arg) 79) |