1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

*** empty log message ***

This commit is contained in:
Jim Blandy 1997-05-29 00:13:01 +00:00
parent 24e37377fa
commit 1e5afba02b
2 changed files with 11 additions and 1 deletions

3
NEWS
View file

@ -18,7 +18,8 @@ Changes in Guile 1.2:
token of the form #:NAME, where NAME has the same syntax as a Scheme
symbol, is the external representation of the keyword named NAME.
Keyword objects print using this syntax as well, so values containing
keyword objects can be read back into Guile.
keyword objects can be read back into Guile. When used in an
expression, keywords are self-quoting objects.
Guile suports this read syntax, and uses this print syntax, regardless
of the current setting of the `keyword' read option. The `keyword'

View file

@ -1,3 +1,12 @@
Wed May 28 11:58:28 1997 Jim Blandy <jimb@totoro.cyclic.com>
* regex-posix.c: #include <regex.h> conditionally, so the file is
CPP'able (for dependency scanning) even on systems that don't have
a <regex.h> header.
* regex-posix.c: #include "_scm.h" before conditionally #including
<regex.h>; the former defines HAVE_REGCOMP.
Tue May 27 23:48:38 1997 Jim Blandy <jimb@floss.cyclic.com>
Add new R4RS-compliant syntax for keywords.