guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-329-g51607


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-329-g5160780
Date: Tue, 09 Apr 2013 17:59:35 +0000

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=51607806ec2f2fbe4e4739c3ed599a36121e5d42

The branch, stable-2.0 has been updated
       via  51607806ec2f2fbe4e4739c3ed599a36121e5d42 (commit)
      from  3c8f2ae958f96f16ffcbb74e0b022bd9999ecb03 (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 51607806ec2f2fbe4e4739c3ed599a36121e5d42
Author: Mark H Weaver <address@hidden>
Date:   Tue Apr 9 13:54:39 2013 -0400

    Manual: Don't promise to signal an error for an illegal 'letrec'.
    
    Reported by Nikita Karetnikov <address@hidden>.
    
    * doc/ref/api-binding.texi (Local Bindings): Remove the incorrect claim
      that improperly accessing a letrec-bound variable during evaluation of
      its initializers will necessarily cause an error to be signalled.

-----------------------------------------------------------------------

Summary of changes:
 doc/ref/api-binding.texi |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/ref/api-binding.texi b/doc/ref/api-binding.texi
index 5763f36..e3a9918 100644
--- a/doc/ref/api-binding.texi
+++ b/doc/ref/api-binding.texi
@@ -218,9 +218,9 @@ variables.
 
 @lisp
 (letrec ((a 42)
-         (b (+ a 10)))
+         (b (+ a 10)))  ;; Illegal access
   (* a b))
address@hidden ;; Error: unbound variable: a
+;; The behavior of the expression above is unspecified
 
 (letrec* ((a 42)
           (b (+ a 10)))


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]