From fedc330e463d052dfedaebc2638b1f5b3e6432d3 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Mon, 8 Apr 2002 20:45:15 +0000 Subject: [PATCH] Initial revision --- ice-9/and-let-star-compat.scm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ice-9/and-let-star-compat.scm diff --git a/ice-9/and-let-star-compat.scm b/ice-9/and-let-star-compat.scm new file mode 100644 index 000000000..f9efd6730 --- /dev/null +++ b/ice-9/and-let-star-compat.scm @@ -0,0 +1,12 @@ +;;;; This file will be installed as "and-let*.scm" on systems that +;;;; support it. It will go away in the future, use the module +;;;; (ice-9 and-let-star) instead. + +(define-module (ice-9 and-let*) + :use-module (ice-9 and-let-star) + :re-export-syntax (and-let*)) + +(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))