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.2-178-g80fc4


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.2-178-g80fc43f
Date: Sat, 22 Oct 2011 11:26:09 +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=80fc43f2cf12c7a21a0533cc84e91059ef9d8170

The branch, stable-2.0 has been updated
       via  80fc43f2cf12c7a21a0533cc84e91059ef9d8170 (commit)
      from  74e4dd279863cfe71b74a8db4b099c727c1ce3b0 (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 80fc43f2cf12c7a21a0533cc84e91059ef9d8170
Author: Ludovic Courtès <address@hidden>
Date:   Sat Oct 22 13:25:11 2011 +0200

    Initialize `get_internal_run_time' before it is used.
    
    * libguile/init.c (scm_i_init_guile): Call `scm_init_stime' before
      `scm_init_gc'.  Fixes <https://savannah.gnu.org/bugs/?34616> reported
      by Bake Timmons.

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

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

diff --git a/libguile/init.c b/libguile/init.c
index 3dd966f..8e3888d 100644
--- a/libguile/init.c
+++ b/libguile/init.c
@@ -435,7 +435,8 @@ scm_i_init_guile (void *base)
   scm_init_objprop ();
   scm_init_promises ();         /* requires smob_prehistory */
   scm_init_hooks ();            /* Requires smob_prehistory */
-  scm_init_gc ();              /* Requires hooks */
+  scm_init_stime ();
+  scm_init_gc ();              /* Requires hooks and `get_internal_run_time' */
   scm_init_gc_protect_object ();  /* requires threads_prehistory */
   scm_init_gdbint ();           /* Requires strports, gc_protect_object */
   scm_init_gettext ();
@@ -481,7 +482,6 @@ scm_i_init_guile (void *base)
   scm_init_load ();     /* Requires strings */
   scm_init_print ();   /* Requires strings, struct, smob */
   scm_init_read ();
-  scm_init_stime ();
   scm_init_strorder ();
   scm_init_srfi_13 ();
   scm_init_srfi_14 ();  /* Requires smob_prehistory */


hooks/post-receive
-- 
GNU Guile



reply via email to

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