From 999010b63d5dcc36a1b85f58b0b22f4f09c4b5cc Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Thu, 29 Mar 2001 22:36:06 +0000 Subject: [PATCH] * boot-9.scm (init-dynamic-module): Fix typo in call to warn-autoload-deprecation. I feel silly. --- ice-9/boot-9.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm index e96defa1f..57f8a3e8e 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -1827,7 +1827,7 @@ (or-map (lambda (modinfo) (if (equal? (car modinfo) modname) (begin - (warn-autload-deprecation modname) + (warn-autoload-deprecation modname) (set! registered-modules (delq! modinfo registered-modules)) (let ((mod (resolve-module modname #f))) (save-module-excursion