summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--module/ice-9/command-line.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/ice-9/command-line.scm b/module/ice-9/command-line.scm
index 13274126b..9f8c9de88 100644
--- a/module/ice-9/command-line.scm
+++ b/module/ice-9/command-line.scm
@@ -184,7 +184,7 @@ If FILE begins with `-' the -s switch is mandatory.
(define (load/lang f)
(case (current-language)
((scheme)
- (load f))
+ (load-in-vicinity (getcwd) f))
(else
((module-ref (resolve-module '(system base compile)) 'compile-file)
f #:to 'value))))