mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
deprecated sc-expand in deprecated (ice-9 syncase)
* module/ice-9/syncase.scm: Export sc-expand as macroexpand.
This commit is contained in:
parent
fb53c347a6
commit
d53e5a7edb
1 changed files with 4 additions and 1 deletions
|
@ -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?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue