diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index f512f2a11..72a83c462 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,8 @@ +2001-04-06 Neil Jerram + + * boot-9.scm (warn-autoload-deprecation): Close parenthesis in + "You just tried to autoload ..." message. + 2001-04-05 Keisuke Nishida * Makefile.am (ice9_sources): Add history.scm. diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm index 57f8a3e8e..f2482b821 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -1819,7 +1819,7 @@ ";;; Write a Scheme file instead that uses `dynamic-link' directly.\n" (current-error-port)) (format (current-error-port) - ";;; (You just tried to autoload module ~S.\n" modname)) + ";;; (You just tried to autoload module ~S.)\n" modname)) (define (init-dynamic-module modname) ;; Register any linked modules which has been registered on the C level