aboutsummaryrefslogtreecommitdiffstats
path: root/Template.scm
diff options
context:
space:
mode:
Diffstat (limited to 'Template.scm')
-rw-r--r--Template.scm18
1 files changed, 16 insertions, 2 deletions
diff --git a/Template.scm b/Template.scm
index a03b76b..55011b2 100644
--- a/Template.scm
+++ b/Template.scm
@@ -1,5 +1,5 @@
;"Template.scm" configuration template of *features* for Scheme -*-scheme-*-
-; Copyright (C) 1991, 1992, 1993 Aubrey Jaffer.
+; Copyright (C) 1991, 1992, 1993, 1994, 1997 Aubrey Jaffer.
;
;Permission to copy this software, to redistribute it, and to use it
;for any purpose is granted, subject to the following restrictions and
@@ -59,6 +59,14 @@
(else "")))))
(lambda () library-path)))
+;;; (home-vicinity) should return the vicinity of the user's HOME
+;;; directory, the directory which typically contains files which
+;;; customize a computer environment for a user.
+
+(define home-vicinity
+ (let ((home-path (getenv "HOME")))
+ (lambda () home-path)))
+
;;; *FEATURES* should be set to a list of symbols describing features
;;; of this implementation. Suggestions for features are:
@@ -172,7 +180,7 @@
(list (cons 'defmacro
(lambda (name parms . body)
`(set! *defmacros* (cons (cons ',name (lambda ,parms ,@body))
- *defmacros*))))))
+ *defmacros*))))))
(define (defmacro? m) (and (assq m *defmacros*) #t))
(define (macroexpand-1 e)
@@ -217,6 +225,12 @@
(evl o))
(set! *load-pathname* old-load-pathname)))))
+(define slib:warn
+ (lambda args
+ (let ((port (current-error-port)))
+ (display "Warn: " port)
+ (for-each (lambda (x) (display x port)) args))))
+
;;; define an error procedure for the library
;(define slib:error error)