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.scm | |
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.scm')
-rw-r--r-- | module/rnrs.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/rnrs.scm b/module/rnrs.scm index d2b4cb3f6..f4ab970e3 100644 --- a/module/rnrs.scm +++ b/module/rnrs.scm @@ -1,6 +1,6 @@ ;;; rnrs.scm --- The R6RS composite 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 @@ -73,7 +73,7 @@ vector-map vector-for-each error assertion-violation assert call-with-current-continuation call/cc call-with-values dynamic-wind values apply quasiquote unquote unquote-splicing let-syntax - letrec-syntax syntax-rules identifier-syntax + letrec-syntax syntax-rules identifier-syntax else => _ ... ;; (rnrs bytevectors) |