diff options
author | Andy Wingo <wingo@pobox.com> | 2010-04-07 00:05:34 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-04-07 00:05:34 +0200 |
commit | d53e5a7edb091255c5026d6e194f4885a32e769d (patch) | |
tree | c7e964ac18dd2e9a6442ace9eaa9afd36448639a | |
parent | fb53c347a6794b2b8fd7419269633b1f28e31b25 (diff) | |
download | guile-d53e5a7edb091255c5026d6e194f4885a32e769d.tar.gz |
deprecated sc-expand in deprecated (ice-9 syncase)
* module/ice-9/syncase.scm: Export sc-expand as macroexpand.
-rw-r--r-- | module/ice-9/syncase.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/ice-9/syncase.scm b/module/ice-9/syncase.scm index 6dac66d64..219803ef0 100644 --- a/module/ice-9/syncase.scm +++ b/module/ice-9/syncase.scm @@ -17,13 +17,16 @@ (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? |