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-2-126-g59


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-2-126-g5950cc3
Date: Fri, 28 Aug 2009 15:20:57 +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=5950cc3fcc7fb0d13be23fcccb8916fd8c2da4e2

The branch, master has been updated
       via  5950cc3fcc7fb0d13be23fcccb8916fd8c2da4e2 (commit)
      from  ce3ed0125fcfb9ad09da815f133a2320102d164c (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 5950cc3fcc7fb0d13be23fcccb8916fd8c2da4e2
Author: Andy Wingo <address@hidden>
Date:   Fri Aug 28 17:12:15 2009 +0200

    fix case in which compiled path had stale .go, but fallback had fresh .go
    
    * libguile/load.c (scm_primitive_load_path): If the compiled path was
      out of date, but the fallback path was current, we correctly detected
      that case, but loaded the wrong file. So here fix the typo.

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

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

diff --git a/libguile/load.c b/libguile/load.c
index 29ef74a..41db90c 100644
--- a/libguile/load.c
+++ b/libguile/load.c
@@ -752,7 +752,7 @@ SCM_DEFINE (scm_primitive_load_path, "primitive-load-path", 
1, 1, 0,
           scm_puts (";;; found fresh local cache at ", scm_current_error_port 
());
           scm_display (fallback, scm_current_error_port ());
           scm_newline (scm_current_error_port ());
-          return scm_load_compiled_with_vm (compiled_filename);
+          return scm_load_compiled_with_vm (fallback);
         }
     }
 


hooks/post-receive
-- 
GNU Guile




reply via email to

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