* c-tokenize.lex: remove trailing comma from enum. Thanks to
[bpt/guile.git] / ice-9 / and-let-star.scm
1 ;;;; and-let-star.scm --- and-let* syntactic form (draft SRFI-2) for Guile
2 ;;;; written by Michael Livshin <mike@olan.com>
3 ;;;;
4 ;;;; Copyright (C) 1999, 2001 Free Software Foundation, Inc.
5 ;;;;
6 ;;;; This library is free software; you can redistribute it and/or
7 ;;;; modify it under the terms of the GNU Lesser General Public
8 ;;;; License as published by the Free Software Foundation; either
9 ;;;; version 2.1 of the License, or (at your option) any later version.
10 ;;;;
11 ;;;; This library is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 ;;;; Lesser General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU Lesser General Public
17 ;;;; License along with this library; if not, write to the Free Software
18 ;;;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20 (define-module (ice-9 and-let-star)
21 :export-syntax (and-let*))
22
23 (defmacro and-let* (vars . body)
24
25 (define (expand vars body)
26 (cond
27 ((null? vars)
28 `(begin ,@body))
29 ((pair? vars)
30 (let ((exp (car vars)))
31 (cond
32 ((pair? exp)
33 (cond
34 ((null? (cdr exp))
35 `(and ,(car exp) ,(expand (cdr vars) body)))
36 (else
37 (let ((var (car exp))
38 (val (cadr exp)))
39 `(let (,exp)
40 (and ,var ,(expand (cdr vars) body)))))))
41 (else
42 `(and ,exp ,(expand (cdr vars) body))))))
43 (else
44 (error "not a proper list" vars))))
45
46 (expand vars body))