aboutsummaryrefslogtreecommitdiffstats
path: root/require.scm
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 /require.scm
parent4684239efa63dc1b2c1cbe37ef7d3062029f5532 (diff)
downloadslib-a69c9fb665459e2bfdbda1bf80741a0af31a7faf.tar.gz
slib-a69c9fb665459e2bfdbda1bf80741a0af31a7faf.zip
New upstream version 3b5upstream/3b5upstream
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)