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-52-ga20eb9


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-52-ga20eb9a
Date: Wed, 23 Jan 2013 15:11:49 +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=a20eb9a39be78909b3447aebee9a326de5042d19

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

    fix regression in -l
    
    * module/ice-9/command-line.scm (compile-shell-switches): Fix regression
      with -l argument, which was loading arg0 instead.

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

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 9f8c9de..2aa50ec 100644
--- a/module/ice-9/command-line.scm
+++ b/module/ice-9/command-line.scm
@@ -254,7 +254,7 @@ If FILE begins with `-' the -s switch is mandatory.
             (if (null? args)
                 (error "missing argument to `-l' switch"))
             (parse (cdr args)
-                   (cons `((@@ (ice-9 command-line) load/lang) ,arg0)
+                   (cons `((@@ (ice-9 command-line) load/lang) ,(car args))
                          out)))
 
            ((string=? arg "-L")         ; add to %load-path


hooks/post-receive
-- 
GNU Guile



reply via email to

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