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-51-g8026a7


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-51-g8026a77
Date: Wed, 23 Jan 2013 15:05:37 +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=8026a774a98acde5f9a692e97f38bf5ba6a317b3

The branch, stable-2.0 has been updated
       via  8026a774a98acde5f9a692e97f38bf5ba6a317b3 (commit)
      from  faabd16157f8b55766cf890e79129c066fbc124b (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 8026a774a98acde5f9a692e97f38bf5ba6a317b3
Author: Andy Wingo <address@hidden>
Date:   Wed Jan 23 16:05:13 2013 +0100

    load files from the command line relative to the cwd
    
    * module/ice-9/command-line.scm (load/lang): Load files from the command
      line relative to the current working directory (fixes regression).

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

Summary of changes:
 module/ice-9/command-line.scm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/module/ice-9/command-line.scm b/module/ice-9/command-line.scm
index 1327412..9f8c9de 100644
--- a/module/ice-9/command-line.scm
+++ b/module/ice-9/command-line.scm
@@ -184,7 +184,7 @@ If FILE begins with `-' the -s switch is mandatory.
 (define (load/lang f)
   (case (current-language)
     ((scheme)
-     (load f))
+     (load-in-vicinity (getcwd) f))
     (else
      ((module-ref (resolve-module '(system base compile)) 'compile-file)
       f #:to 'value))))


hooks/post-receive
-- 
GNU Guile



reply via email to

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