diff options
Diffstat (limited to 'module/ice-9/command-line.scm')
-rw-r--r-- | module/ice-9/command-line.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/ice-9/command-line.scm b/module/ice-9/command-line.scm index cd98c9904..b387eb350 100644 --- a/module/ice-9/command-line.scm +++ b/module/ice-9/command-line.scm @@ -32,7 +32,7 @@ ;;; (define-module (ice-9 command-line) - #:autoload (system vm vm) (set-default-vm-engine! set-vm-engine! the-vm) + #:autoload (system vm vm) (set-default-vm-engine! set-vm-engine!) #:export (compile-shell-switches version-etc *GPLv3+* @@ -422,7 +422,7 @@ If FILE begins with `-' the -s switch is mandatory. (and interactive? (not turn-off-debugging?))) (begin (set-default-vm-engine! 'debug) - (set-vm-engine! (the-vm) 'debug))) + (set-vm-engine! 'debug))) ;; Return this value. `(;; It would be nice not to load up (ice-9 control), but the |