From 47fb09e26fe7bff6e64dc71520637baf94071d01 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Thu, 12 Jul 2001 23:31:05 +0000 Subject: [PATCH] Use `re-export' instead of `export' for re-exported core bindings. Do not export `unquote' and `unquote-splicing' since there aren't definitions for them. --- ice-9/null.scm | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/ice-9/null.scm b/ice-9/null.scm index 6875a438e..594f3d79f 100644 --- a/ice-9/null.scm +++ b/ice-9/null.scm @@ -45,18 +45,17 @@ (define-module (ice-9 null) :use-module (ice-9 syncase)) -(export define quote lambda if set! +(re-export define quote lambda if set! - cond case and or - - let let* letrec - - begin do - - delay - - quasiquote unquote unquote-splicing - - define-syntax - let-syntax letrec-syntax - ) + cond case and or + + let let* letrec + + begin do + + delay + + quasiquote + + define-syntax + let-syntax letrec-syntax)