From de698bfa2679e5aab75dde54e29d01ba7b61fae7 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Mon, 11 Jun 2001 17:23:42 +0000 Subject: [PATCH] Use `begin-deprecated' instead of testing `include-deprecated-features' when conditionally using the (ice-9 rdelim) module. See below. --- ice-9/boot-9.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm index e1a6e7dd7..cad2a8548 100644 --- a/ice-9/boot-9.scm +++ b/ice-9/boot-9.scm @@ -3066,8 +3066,8 @@ (define-module (guile-user)) -(if include-deprecated-features - ;; automatic availability of this module is deprecated. - (use-modules (ice-9 rdelim))) +(begin-deprecated + ;; automatic availability of this module is deprecated. + (use-modules (ice-9 rdelim))) ;;; boot-9.scm ends here