From 81fe97ae2960110a54b38dfb5b34a7bc99804a81 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Sat, 8 Sep 2001 19:34:02 +0000 Subject: [PATCH] Use `re-export-syntax'. --- ice-9/and-let-star-compat.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ice-9/and-let-star-compat.scm b/ice-9/and-let-star-compat.scm index e69de29bb..c47e0eefc 100644 --- a/ice-9/and-let-star-compat.scm +++ b/ice-9/and-let-star-compat.scm @@ -0,0 +1,13 @@ +;;;; This file will be installed as "and-let*.scm" on systems that +;;;; support it. It will go away in the future, use the module +;;;; (and-let-star) instead. + +(define-module (ice-9 and-let*) + :use-module (ice-9 and-let-star)) + +(display ";;; The module name (ice-9 and-let*) is deprecated.\n" + (current-error-port)) +(display ";;; Use (ice-9 and-let-star) instead.\n\n" + (current-error-port)) + +(re-export-syntax and-let*)