[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] branch master updated (2cca091 -> f060f1a)
From: |
Andy Wingo |
Subject: |
[Guile-commits] branch master updated (2cca091 -> f060f1a) |
Date: |
Tue, 22 Oct 2019 10:23:20 -0400 (EDT) |
wingo pushed a change to branch master
in repository guile.
from 2cca091 Extend `import' to allow R7RS-style srfi references
new f152d7c Refactor PEG records
new 40395c0 Remove (ice-9 channel)
new 0c8d20d Re-implement (ice-9 gap-buffer) records in terms of srfi-9
new f7b4055 Deprecate two-arg `record-constructor'
new 6205c2d Fix deprecated 1-arg `make-module' in tests
new 4bec125 Allow records to be subtyped
new f060f1a Record accessors respect subtyping
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
doc/ref/api-data.texi | 28 +++--
module/Makefile.am | 1 -
module/ice-9/boot-9.scm | 225 +++++++++++++++++++++++++------------
module/ice-9/channel.scm | 170 ----------------------------
module/ice-9/gap-buffer.scm | 62 ++++------
module/ice-9/peg/using-parsers.scm | 41 ++++---
module/srfi/srfi-9.scm | 5 +-
test-suite/tests/modules.test | 4 +-
test-suite/tests/records.test | 52 ++++++++-
9 files changed, 270 insertions(+), 318 deletions(-)
delete mode 100644 module/ice-9/channel.scm
- [Guile-commits] branch master updated (2cca091 -> f060f1a),
Andy Wingo <=
- [Guile-commits] 01/07: Refactor PEG records, Andy Wingo, 2019/10/22
- [Guile-commits] 02/07: Remove (ice-9 channel), Andy Wingo, 2019/10/22
- [Guile-commits] 06/07: Allow records to be subtyped, Andy Wingo, 2019/10/22
- [Guile-commits] 04/07: Deprecate two-arg `record-constructor', Andy Wingo, 2019/10/22
- [Guile-commits] 03/07: Re-implement (ice-9 gap-buffer) records in terms of srfi-9, Andy Wingo, 2019/10/22
- [Guile-commits] 05/07: Fix deprecated 1-arg `make-module' in tests, Andy Wingo, 2019/10/22
- [Guile-commits] 07/07: Record accessors respect subtyping, Andy Wingo, 2019/10/22