Change Guile license to LGPLv3+
[bpt/guile.git] / module / ice-9 / syncase.scm
CommitLineData
cd5fea8d 1;;;; Copyright (C) 1997, 2000, 2001, 2002, 2003, 2006 Free Software Foundation, Inc.
a63812a2 2;;;;
73be1d9e
MV
3;;;; This library is free software; you can redistribute it and/or
4;;;; modify it under the terms of the GNU Lesser General Public
5;;;; License as published by the Free Software Foundation; either
53befeb7 6;;;; version 3 of the License, or (at your option) any later version.
a63812a2 7;;;;
73be1d9e 8;;;; This library is distributed in the hope that it will be useful,
a63812a2 9;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
10;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11;;;; Lesser General Public License for more details.
a63812a2 12;;;;
73be1d9e
MV
13;;;; You should have received a copy of the GNU Lesser General Public
14;;;; License along with this library; if not, write to the Free Software
92205699 15;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
a63812a2
JB
16;;;;
17\f
18
19(define-module (ice-9 syncase)
13182603 20 )
a63812a2 21
13182603
AW
22(issue-deprecation-warning
23 "Syntax-case macros are now a part of Guile core; importing (ice-9 syncase) is no longer necessary.")
a63812a2
JB
24
25;;; Hack to make syncase macros work in the slib module
13182603
AW
26;; FIXME wingo is this still necessary?
27;; (let ((m (nested-ref the-root-module '(%app modules ice-9 slib))))
28;; (if m
29;; (set-object-property! (module-local-variable m 'define)
30;; '*sc-expander*
31;; '(define))))