remove encoding of versions into the file system (for now?)
[bpt/guile.git] / module / rnrs / syntax-case.scm
CommitLineData
ce543a9f
JG
1;;; syntax-case.scm --- R6RS support for `syntax-case' macros
2
3;; Copyright (C) 2010 Free Software Foundation, Inc.
4;;
5;; This library is free software; you can redistribute it and/or
6;; modify it under the terms of the GNU Lesser General Public
7;; License as published by the Free Software Foundation; either
8;; version 3 of the License, or (at your option) any later version.
9;;
10;; This library is distributed in the hope that it will be useful,
11;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13;; Lesser General Public License for more details.
14;;
15;; You should have received a copy of the GNU Lesser General Public
16;; License along with this library; if not, write to the Free Software
17;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18\f
19
20(library (rnrs syntax-case (6))
21 (export make-variable-transformer
22 syntax-case
23 syntax
24
25 identifier?
26 bound-identifier=?
27 free-identifier=?
28
29 syntax->datum
30 datum->syntax
31 generate-temporaries
32 with-syntax
33
34 quasisyntax
35 unsyntax
36 unsyntax-splicing
37
38 syntax-violation)
39 (import (only (guile) syntax-case
40 syntax
41
42 identifier?
43 bound-identifier=?
44 free-identifier=?
45
46 syntax->datum
47 datum->syntax
48 generate-temporaries
49 with-syntax
50
51 quasisyntax
52 unsyntax
0c7398a7
JG
53 unsyntax-splicing)
54 (ice-9 optargs)
55 (rnrs base (6))
56 (rnrs conditions (6))
57 (rnrs exceptions (6))
58 (rnrs records procedural (6)))
ce543a9f 59
0c7398a7
JG
60 (define* (syntax-violation who message form #:optional subform)
61 (let* ((conditions (list (make-message-condition message)
62 (make-syntax-violation form subform)))
63 (conditions (if who
64 (cons (make-who-condition who) conditions)
65 conditions)))
66 (raise (apply condition conditions))))
67)