This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Guile".
http://git.savannah.gnu.org/cgit/guile.git/commit/?id=da81e75d3e65445fa56865a28f83b07391853a0a The branch, stable-2.0 has been updated via da81e75d3e65445fa56865a28f83b07391853a0a (commit) from 1fc651e3a5249fa35d143628d27243e96b90a0bd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit da81e75d3e65445fa56865a28f83b07391853a0a Author: Mark H Weaver <[email protected]> Date: Wed Jan 15 02:37:46 2014 -0500 Document that we support srfi-87 and add it to %cond-expand-features. * module/ice-9/boot-9.scm (%cond-expand-features): Add srfi-87. * doc/ref/srfi-modules.texi (SRFI-0): Add srfi-87 to the list of core features. (SRFI-87): New node. ----------------------------------------------------------------------- Summary of changes: doc/ref/srfi-modules.texi | 10 ++++++++++ module/ice-9/boot-9.scm | 1 + 2 files changed, 11 insertions(+), 0 deletions(-) diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi index 6da2b9e..6f1ed05 100644 --- a/doc/ref/srfi-modules.texi +++ b/doc/ref/srfi-modules.texi @@ -54,6 +54,7 @@ get the relevant SRFI documents from the SRFI home page * SRFI-62:: S-expression comments. * SRFI-67:: Compare procedures * SRFI-69:: Basic hash tables. +* SRFI-87:: => in case clauses. * SRFI-88:: Keyword objects. * SRFI-98:: Accessing environment variables. * SRFI-105:: Curly-infix expressions. @@ -156,6 +157,7 @@ srfi-39 srfi-55 srfi-61 srfi-62 +srfi-87 srfi-105 @end example @@ -5040,6 +5042,14 @@ Answer a hash value appropriate for equality predicate @code{equal?}, @code{hash} is a backwards-compatible replacement for Guile's built-in @code{hash}. +@node SRFI-87 +@subsection SRFI-87 => in case clauses +@cindex SRFI-87 + +Starting from version 2.0.6, Guile's core @code{case} syntax supports +@code{=>} in clauses, as specified by SRFI-87/R7RS. +@xref{Conditionals}. + @node SRFI-88 @subsection SRFI-88 Keyword Objects @cindex SRFI-88 diff --git a/module/ice-9/boot-9.scm b/module/ice-9/boot-9.scm index 733c2b1..640229e 100644 --- a/module/ice-9/boot-9.scm +++ b/module/ice-9/boot-9.scm @@ -4044,6 +4044,7 @@ when none is available, reading FILE-NAME with READER." srfi-55 ;; require-extension srfi-61 ;; general cond clause srfi-62 ;; s-expression comments + srfi-87 ;; => in case clauses srfi-105 ;; curly infix expressions )) hooks/post-receive -- GNU Guile
