diff options
-rw-r--r-- | module/ice-9/command-line.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/ice-9/command-line.scm b/module/ice-9/command-line.scm index 9f8c9de88..2aa50ec80 100644 --- a/module/ice-9/command-line.scm +++ b/module/ice-9/command-line.scm @@ -254,7 +254,7 @@ If FILE begins with `-' the -s switch is mandatory. (if (null? args) (error "missing argument to `-l' switch")) (parse (cdr args) - (cons `((@@ (ice-9 command-line) load/lang) ,arg0) + (cons `((@@ (ice-9 command-line) load/lang) ,(car args)) out))) ((string=? arg "-L") ; add to %load-path |