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-32-g3404ad


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-32-g3404ada
Date: Wed, 16 Jan 2013 12:28:04 +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=3404ada0a695b7e9ea1e6221fb1531ebdd73c211

The branch, stable-2.0 has been updated
       via  3404ada0a695b7e9ea1e6221fb1531ebdd73c211 (commit)
      from  58c4a39d9824d021994754181a369d1daa30f588 (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 3404ada0a695b7e9ea1e6221fb1531ebdd73c211
Author: Andy Wingo <address@hidden>
Date:   Wed Jan 16 13:27:55 2013 +0100

    peval-introduced gensyms infix " "
    
    * module/language/tree-il/peval.scm (peval): Gensyms use whitespace as
      an infix, not a dash.  Helps gensym?-like procedures like those in the
      unused lexical analysis.

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

Summary of changes:
 module/language/tree-il/peval.scm |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/module/language/tree-il/peval.scm 
b/module/language/tree-il/peval.scm
index 81921e3..a1281fd 100644
--- a/module/language/tree-il/peval.scm
+++ b/module/language/tree-il/peval.scm
@@ -1,6 +1,6 @@
 ;;; Tree-IL partial evaluator
 
-;; Copyright (C) 2011, 2012 Free Software Foundation, Inc.
+;; Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc.
 
 ;;;; This library is free software; you can redistribute it and/or
 ;;;; modify it under the terms of the GNU Lesser General Public
@@ -432,7 +432,7 @@ top-level bindings from ENV and return the resulting 
expression."
   (define (fresh-gensyms vars)
     (map (lambda (var)
            (let ((new (gensym (string-append (symbol->string (var-name var))
-                                             "-"))))
+                                             " "))))
              (set! store (vhash-consq new var store))
              new))
          vars))


hooks/post-receive
-- 
GNU Guile



reply via email to

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