diff options
-rw-r--r-- | ice-9/boot-9.scm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm index 4cabb7557..71d5d3b97 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -97,6 +97,13 @@ (primitive-load-path "ice-9/r4rs.scm") +;;; {Deprecated stuff} + +(begin-deprecated + (primitive-load-path "ice-9/deprecated.scm")) + + + ;;; {Simple Debugging Tools} ;; @@ -1679,7 +1686,9 @@ ;; (define-special-value '(app modules new-ws) (lambda () (make-scm-module))) (define (try-load-module name) - (try-module-autoload name)) + (or (begin-deprecated (try-module-linked name)) + (try-module-autoload name) + (begin-deprecated (try-module-dynamic-link name)))) (define (purify-module! module) "Removes bindings in MODULE which are inherited from the (guile) module." |