diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | libguile/ChangeLog | 9 |
2 files changed, 11 insertions, 1 deletions
@@ -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' diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 9870d54ab..653d5a04f 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -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. |