From 6414341421f48ce3c7df71943926dfc1108f39b6 Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Fri, 6 Apr 2001 14:45:34 +0000 Subject: [PATCH] * boot-9.scm (warn-autoload-deprecation): Close parenthesis in "You just tried to autoload ..." message. --- ice-9/ChangeLog | 5 +++++ ice-9/boot-9.scm | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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