On Tue, 2013-09-03 at 19:53 +0200, Thien-Thi Nguyen wrote:
[...]
>pt_BR.utf8 is not a supported locale on your system.
yes, that is why I chose it, so as to trigger the error. It is graceful
handling of this error that I was after - it should default to
untranslated, not abort the program.
>
Richard Shann writes:
> On Tue, 2013-09-03 at 19:53 +0200, Thien-Thi Nguyen wrote:
> [...]
>>pt_BR.utf8 is not a supported locale on your system.
>
> yes, that is why I chose it, so as to trigger the error. It is graceful
> handling of this error that I was after - it should default to
> untr
On Wed, 2013-09-04 at 12:17 -0400, Mark H Weaver wrote:
> Richard Shann writes:
>
> > On Tue, 2013-09-03 at 19:53 +0200, Thien-Thi Nguyen wrote:
> > [...]
> >>pt_BR.utf8 is not a supported locale on your system.
> >
> > yes, that is why I chose it, so as to trigger the error. It is graceful
>
Hi all, as I told you in an earlier email, I've been poking with a
grep and sed tool that knows about scheme. Now to see where I'm
heading just consider the following streamed output.
(define (f)
(format #t
"
(let ((x (+ 1 a))
(y 2)
(z 3)
(w 4))
(do-someting x y z w))
"))
Hi Doug,
Doug Evans skribis:
> I have a few questions about smobs:
I’m assuming Guile 2.x here.
> 1) Suppose I have some C code that creates a smob and its containing
> SCM, but does not always expose the SCM to Scheme.
>
> E.g.
>
> struct foo_object
> {
> int bar;
> SCM baz;
> }
>
> stati