guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Don't return file names with backslashes from search-path


From: Mark H Weaver
Subject: Re: Don't return file names with backslashes from search-path
Date: Thu, 14 Aug 2014 18:40:19 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

Eli Zaretskii <address@hidden> writes:

> This small patch plugs yet another hole through which Guile on Windows
> could generate file names with backslashes.
>
> OK to commit?
>
> --- libguile/load.c~2 2014-07-03 09:58:29 +0300
> +++ libguile/load.c   2014-08-14 17:28:26 +0300
> @@ -657,7 +657,8 @@ search_path (SCM path, SCM filename, SCM
>         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;
>           }
>       }

Okay, please push.

    Thanks!
      Mark



reply via email to

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