deprecated sc-expand in deprecated (ice-9 syncase)
authorAndy Wingo <wingo@pobox.com>
Tue, 6 Apr 2010 22:05:34 +0000 (00:05 +0200)
committerAndy Wingo <wingo@pobox.com>
Tue, 6 Apr 2010 22:05:34 +0000 (00:05 +0200)
* module/ice-9/syncase.scm: Export sc-expand as macroexpand.

module/ice-9/syncase.scm

index 6dac66d64ba105abc2d0cb0c2cab58f53caa6a11..219803ef01800041af0f80b3adacd121325878d3 100644 (file)
 \f
 
 (define-module (ice-9 syncase)
-  #:export (datum->syntax-object syntax-object->datum))
+  ;; FIXME re-export other procs
+  #:export (datum->syntax-object syntax-object->datum
+            sc-expand))
 
 (issue-deprecation-warning
  "Syntax-case macros are now a part of Guile core; importing (ice-9 syncase) is no longer necessary.")
 
 (define datum->syntax-object datum->syntax)
 (define syntax-object->datum syntax->datum)
+(define sc-expand macroexpand)
 
 ;;; Hack to make syncase macros work in the slib module
 ;; FIXME wingo is this still necessary?