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-301-g3f136


From: Chris K. Jester-Young
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-301-g3f1362a
Date: Sat, 06 Apr 2013 07:08:36 +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=3f1362adb5203b95079200520357bff36c3a6672

The branch, stable-2.0 has been updated
       via  3f1362adb5203b95079200520357bff36c3a6672 (commit)
      from  a24cda1d26e09ddddb2cfe6633d7fee7a1b66d35 (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 3f1362adb5203b95079200520357bff36c3a6672
Author: Chris K. Jester-Young <address@hidden>
Date:   Sat Apr 6 03:06:37 2013 -0400

    Use a fresh cons for %stream-null.
    
    * module/srfi/srfi-41.scm (%stream-null): Use a fresh cons rather than
      a literal cons. You never know what peval constant-folding could do
      with the latter, either now or in the future.

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

Summary of changes:
 module/srfi/srfi-41.scm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/module/srfi/srfi-41.scm b/module/srfi/srfi-41.scm
index edf95d7..6f73ce3 100644
--- a/module/srfi/srfi-41.scm
+++ b/module/srfi/srfi-41.scm
@@ -148,7 +148,7 @@
 
 (define stream? stream-promise?)
 
-(define %stream-null '(stream . null))
+(define %stream-null (cons 'stream 'null))
 (define stream-null (stream-eager %stream-null))
 
 (define (stream-null? obj)


hooks/post-receive
-- 
GNU Guile



reply via email to

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