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.5-76-g1a4d76


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.5-76-g1a4d765
Date: Mon, 05 Mar 2012 16:46:05 +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=1a4d765381904a3b8afeec1a6d0f746626a49967

The branch, stable-2.0 has been updated
       via  1a4d765381904a3b8afeec1a6d0f746626a49967 (commit)
      from  07bc8e7c339fb43664e17a6e016702bc13760a14 (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 1a4d765381904a3b8afeec1a6d0f746626a49967
Author: Mark H Weaver <address@hidden>
Date:   Sun Mar 4 22:47:04 2012 -0500

    Don't call SYMBOL_STRINGBUF on a string
    
    * libguile/strings.c (scm_i_make_symbol): Use STRING_STRINGBUF
      instead of SYMBOL_STRINGBUF to get the stringbuf of a string.

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

Summary of changes:
 libguile/strings.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libguile/strings.c b/libguile/strings.c
index 71eee6c..494a658 100644
--- a/libguile/strings.c
+++ b/libguile/strings.c
@@ -748,7 +748,7 @@ scm_i_make_symbol (SCM name, scm_t_bits flags,
       name = SH_STRING_STRING (name);
       start += STRING_START (name);
     }
-  buf = SYMBOL_STRINGBUF (name);
+  buf = STRING_STRINGBUF (name);
 
   if (start == 0 && length == STRINGBUF_LENGTH (buf))
     {


hooks/post-receive
-- 
GNU Guile



reply via email to

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