aboutsummaryrefslogtreecommitdiffstats
path: root/require.scm
diff options
context:
space:
mode:
Diffstat (limited to 'require.scm')
-rw-r--r--require.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/require.scm b/require.scm
index a659019..67b4369 100644
--- a/require.scm
+++ b/require.scm
@@ -17,7 +17,7 @@
;promotional, or sales literature without prior written consent in
;each case.
;@
-(define *slib-version* "3b1")
+(define *slib-version* "3b5")
;;;; MODULES
;@
@@ -228,10 +228,11 @@
(newline))
;@
(define (slib:report . args)
- (define rpt (lambda () (slib:report-version) (slib:report-locations)))
- (cond ((null? args) (rpt))
+ (define rpt (lambda () (slib:report-version) (slib:report-locations #t)))
+ (cond ((null? args)
+ (slib:report-version) (slib:report-locations))
((not (string? (car args)))
- (slib:report-version) (slib:report-locations #t))
+ (rpt))
((slib:provided? 'transcript)
(transcript-on (car args))
(rpt)