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=c6a7930b38a55aa2402f4ed722a4ef460ad67810 The branch, stable-2.0 has been updated via c6a7930b38a55aa2402f4ed722a4ef460ad67810 (commit) from cfefef6bd96294b373104e85d80bc3f4f3fb482b (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 c6a7930b38a55aa2402f4ed722a4ef460ad67810 Author: Eli Zaretskii <[email protected]> Date: Fri Aug 15 09:47:52 2014 +0300 On MS-Windows, don't return file names with backslashes from search-path. * libguile/load.c (search_path): On MS-Windows, convert all backslashes to forward slashes if the file was found on PATH. ----------------------------------------------------------------------- Summary of changes: libguile/load.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/libguile/load.c b/libguile/load.c index d4bb9ef..74ccd08 100644 --- a/libguile/load.c +++ b/libguile/load.c @@ -657,7 +657,8 @@ search_path (SCM path, SCM filename, SCM extensions, SCM require_exts, if (stat (buf.buf, stat_buf) == 0 && ! (stat_buf->st_mode & S_IFDIR)) { - result = scm_from_locale_string (buf.buf); + result = + scm_from_locale_string (scm_i_mirror_backslashes (buf.buf)); goto end; } } hooks/post-receive -- GNU Guile
