1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-03 13:20:26 +02:00

* boot-9.scm (warn-autoload-deprecation): Close parenthesis in

"You just tried to autoload ..." message.
This commit is contained in:
Neil Jerram 2001-04-06 14:45:34 +00:00
parent 83b646f27f
commit 6414341421
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2001-04-06 Neil Jerram <neil@ossau.uklinux.net>
* boot-9.scm (warn-autoload-deprecation): Close parenthesis in
"You just tried to autoload ..." message.
2001-04-05 Keisuke Nishida <kxn30@po.cwru.edu> 2001-04-05 Keisuke Nishida <kxn30@po.cwru.edu>
* Makefile.am (ice9_sources): Add history.scm. * Makefile.am (ice9_sources): Add history.scm.

View file

@ -1819,7 +1819,7 @@
";;; Write a Scheme file instead that uses `dynamic-link' directly.\n" ";;; Write a Scheme file instead that uses `dynamic-link' directly.\n"
(current-error-port)) (current-error-port))
(format (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) (define (init-dynamic-module modname)
;; Register any linked modules which has been registered on the C level ;; Register any linked modules which has been registered on the C level