diff options
author | Andy Wingo <wingo@pobox.com> | 2019-09-12 21:50:51 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2019-09-12 21:50:51 +0200 |
commit | 374c1e5807a35b16170ed7686abcd5c407554d78 (patch) | |
tree | 121a61d8a7560a0671d296b7922a53c567ea7046 /module/rnrs | |
parent | 4e89d0c061c585ca56a96ef8410dad17979ca5eb (diff) | |
download | guile-374c1e5807a35b16170ed7686abcd5c407554d78.tar.gz |
Define top-level bindings for aux syntax: else, =>, _, ...
* module/ice-9/boot-9.scm (else, =>, ..., _): New definitions. These
are specified by the r6rs and the r7rs.
* module/ice-9/sandbox.scm (core-bindings): Include the aux syntax
definitions.
* module/rnrs/base.scm:
* module/rnrs.scm: Re-export aux syntax.
Diffstat (limited to 'module/rnrs')
-rw-r--r-- | module/rnrs/base.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/rnrs/base.scm b/module/rnrs/base.scm index 9fedac01d..9205016bd 100644 --- a/module/rnrs/base.scm +++ b/module/rnrs/base.scm @@ -1,6 +1,6 @@ ;;; base.scm --- The R6RS base library -;; Copyright (C) 2010, 2011 Free Software Foundation, Inc. +;; Copyright (C) 2010, 2011, 2019 Free Software Foundation, Inc. ;; ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public @@ -23,7 +23,7 @@ define define-syntax syntax-rules lambda let let* let-values let*-values letrec letrec* begin - quote lambda if set! cond case + quote lambda if set! cond case else => _ ... or and not |