[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] branch master updated (bcfc3f2 -> ce934bc)
From: |
Andy Wingo |
Subject: |
[Guile-commits] branch master updated (bcfc3f2 -> ce934bc) |
Date: |
Tue, 28 Mar 2017 15:28:27 -0400 (EDT) |
wingo pushed a change to branch master
in repository guile.
from bcfc3f2 Git ignore .exe files
new 6ba3f35 Plumbing changes to rename "syntax-module"
new 64c5cc5 Add disjoint syntax object type
new eb84c2f Beginnings of psyntax switch to new syntax objects
new a42bfae Psyntax generates new syntax objects
new ce934bc Add allow-legacy-syntax-objects? parameter
The 5 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:
NEWS | 20 +
doc/ref/api-macros.texi | 38 +
libguile/Makefile.am | 4 +
libguile/evalext.c | 1 +
libguile/goops.c | 4 +
libguile/init.c | 2 +
libguile/print.c | 4 +
libguile/syntax.c | 120 +
libguile/{guardians.h => syntax.h} | 32 +-
libguile/tags.h | 2 +-
module/Makefile.am | 2 +
module/ice-9/boot-9.scm | 24 +-
module/ice-9/compile-psyntax.scm | 136 +-
module/ice-9/psyntax-pp.scm | 6781 ++++++++++----------
module/ice-9/psyntax.scm | 32 +-
module/language/cps/types.scm | 6 +-
module/oop/goops.scm | 3 +-
module/system/base/types.scm | 6 +
.../ecmascript/spec.scm => system/syntax.scm} | 32 +-
module/system/vm/assembler.scm | 24 +-
module/system/vm/disassembler.scm | 1 +
21 files changed, 3812 insertions(+), 3462 deletions(-)
create mode 100644 libguile/syntax.c
copy libguile/{guardians.h => syntax.h} (59%)
copy module/{language/ecmascript/spec.scm => system/syntax.scm} (58%)
- [Guile-commits] branch master updated (bcfc3f2 -> ce934bc),
Andy Wingo <=
- [Guile-commits] 01/05: Plumbing changes to rename "syntax-module", Andy Wingo, 2017/03/28
- [Guile-commits] 05/05: Add allow-legacy-syntax-objects? parameter, Andy Wingo, 2017/03/28
- [Guile-commits] 02/05: Add disjoint syntax object type, Andy Wingo, 2017/03/28
- [Guile-commits] 04/05: Psyntax generates new syntax objects, Andy Wingo, 2017/03/28
- [Guile-commits] 03/05: Beginnings of psyntax switch to new syntax objects, Andy Wingo, 2017/03/28