guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. release_1-9-6-161-g70


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-6-161-g7055591
Date: Thu, 14 Jan 2010 14:52:00 +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=7055591c2e9ba97b9a5d1c15a3b7e1ce409966f5

The branch, master has been updated
       via  7055591c2e9ba97b9a5d1c15a3b7e1ce409966f5 (commit)
      from  f207859b0be606ea77d488262e2b8d114c9ae370 (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 7055591c2e9ba97b9a5d1c15a3b7e1ce409966f5
Author: Andy Wingo <address@hidden>
Date:   Thu Jan 14 13:55:50 2010 +0100

    vm.c uses scm_c_take_bytevector instead of scm_take_u8vector
    
    * libguile/vm.c (really_make_boot_program): Use scm_c_take_bytevector to
      avoid loading srfi-4 at boot time.

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

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

diff --git a/libguile/vm.c b/libguile/vm.c
index d6205f8..afa888e 100644
--- a/libguile/vm.c
+++ b/libguile/vm.c
@@ -205,8 +205,8 @@ really_make_boot_program (long nargs)
   bp->len = sizeof(text);
   bp->metalen = 0;
 
-  u8vec = scm_take_u8vector ((scm_t_uint8*)bp,
-                             sizeof (struct scm_objcode) + sizeof (text));
+  u8vec = scm_c_take_bytevector ((scm_t_int8*)bp,
+                                 sizeof (struct scm_objcode) + sizeof (text));
   ret = scm_make_program (scm_bytecode_to_objcode (u8vec),
                           SCM_BOOL_F, SCM_BOOL_F);
   SCM_SET_CELL_WORD_0 (ret, SCM_CELL_WORD_0 (ret) | SCM_F_PROGRAM_IS_BOOT);


hooks/post-receive
-- 
GNU Guile




reply via email to

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