On Mar 1, 2013, at 10:44, Andy Wingo wrote:
> On Fri 01 Mar 2013 10:01, Daniel Llorens writes:
>
>> scheme@(guile-user)> ,optimize (vector-ref #(1 2 3) 0)
>> $1 = 1
>> scheme@(guile-user)> ,optimize (array-ref #(1 2 3) 0)
>> $2 = (array-ref '#(1 2 3) 0)
>
> File a bug for this case, this sort
Hi,
Marc Girod skribis:
> I had to fix the sed command in the meta/Makefile (1782-1785, generated):
>
> | $(SED) -e "s,@pkgconfigdir@,$(pkgconfigdir),g" \
> -e "s,@""PKG_CONFIG@,$(PKG_CONFIG),g" \
> -e "s,@installed_guile@,$$guile,g" \
>
> The original c
l...@gnu.org (Ludovic Courtès) skribis:
> Ideally Guile would propagate the errno value. But in your case it’s
> ENOENT, so the error message would be like:
>
> failed to resolve host name: No such file or directory
>
> This is not really more helpful than:
>
> failed to resolve host name: Sy
l...@gnu.org (Ludovic Courtès) skribis:
> The following case does not terminate:
>
> scheme@(guile-user)> (use-modules (srfi srfi-37))
> scheme@(guile-user)> (define opts (list (option '(#\I) #f #t (lambda _ #t
> scheme@(guile-user)> (args-fold '("-I") opts (lambda _ (error
> "unrecognized"))