diff options
Diffstat (limited to 'manifest.scm')
-rw-r--r-- | manifest.scm | 8 |
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)) |