and-let-star-compat.scm 428 B

1234567891011121314
  1. ;;;; This file will be installed as "and-let*.scm" on systems that
  2. ;;;; support it. It will go away in the future, use the module
  3. ;;;; (ice-9 and-let-star) instead.
  4. (define-module (ice-9 and-let*)
  5. :use-module (ice-9 and-let-star))
  6. (display ";;; The module name (ice-9 and-let*) is deprecated.\n"
  7. (current-error-port))
  8. (display ";;; Use (ice-9 and-let-star) instead.\n\n"
  9. (current-error-port))
  10. (export-syntax and-let*)