aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.scm
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:38 -0800
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:38 -0800
commit64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34 (patch)
tree1b23b8e8005328194e2fb4bf653806c85050933f /manifest.scm
parent5bea21e81ed516440e34e480f2c33ca41aa8c597 (diff)
downloadslib-64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34.tar.gz
slib-64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34.zip
Import Upstream version 3a5upstream/3a5
Diffstat (limited to 'manifest.scm')
-rw-r--r--manifest.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifest.scm b/manifest.scm
index be55ea7..aa15e6e 100644
--- a/manifest.scm
+++ b/manifest.scm
@@ -332,10 +332,10 @@
(define (f2e feature)
(define path (cdr (or (assq feature catalog) '(#f . #f))))
(define (return path)
- (define path.scm (string-append path (scheme-file-suffix)))
- (cond ((file-exists? path.scm)
- (cons path.scm (file->exports path.scm)))
- (else (slib:warn 'feature->export-alist 'path? path.scm)
+ (define path_scm (string-append path (scheme-file-suffix)))
+ (cond ((file-exists? path_scm)
+ (cons path_scm (file->exports path_scm)))
+ (else (slib:warn 'feature->export-alist 'path? path_scm)
(list path))))
(cond ((not path) '())
((symbol? path) (f2e path))