summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--THANKS1
-rw-r--r--libguile/init.c8
2 files changed, 5 insertions, 4 deletions
diff --git a/THANKS b/THANKS
index fa9963344..1aeb4a429 100644
--- a/THANKS
+++ b/THANKS
@@ -86,6 +86,7 @@ For fixes or providing information which led to a fix:
Andrew Gaylard
Nils Gey
Eric Gillespie, Jr
+ Nala Ginrut
Didier Godefroy
Panicz Maciej Godek
John Goerzen
diff --git a/libguile/init.c b/libguile/init.c
index f55841337..1348c2d79 100644
--- a/libguile/init.c
+++ b/libguile/init.c
@@ -1,6 +1,4 @@
-/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
- * 2004, 2006, 2009, 2010, 2011, 2012, 2013,
- * 2014 Free Software Foundation, Inc.
+/* Copyright (C) 1995-2004, 2006, 2009-2014 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
@@ -314,7 +312,9 @@ scm_boot_guile (int argc, char ** argv, void (*main_func) (), void *closure)
/* On Windows, convert backslashes in argv[0] to forward
slashes. */
- scm_i_mirror_backslashes (argv[0]);
+ if (argc > 0)
+ scm_i_mirror_backslashes (argv[0]);
+
c.main_func = main_func;
c.closure = closure;
c.argc = argc;