Re: Accessing the environment's locale encoding settings

2011-11-23 Thread Mike Gran
> From: Ludovic Courtès >> Here's a suggestion.  One could add an option to the guile > interpreter's command >> line args (--locale=ARG perhaps) that has the effect of calling >> setlocale(LC_ALL,"ARG") first thing.  If --locale is called > with no ARG >> specified, it would call to setloc

Re: Accessing the environment's locale encoding settings

2011-11-23 Thread Ludovic Courtès
Hi Mike, Mike Gran skribis: > Here's a suggestion.  One could add an option to the guile interpreter's > command > line args (--locale=ARG perhaps) that has the effect of calling > setlocale(LC_ALL,"ARG") first thing.  If --locale is called with no ARG > specified, it would call to setlocale(LC

Re: guile-syntax-parse

2011-11-23 Thread Andy Wingo
On Mon 09 May 2011 14:11, Stefan Israelsson Tampe writes: > Hi, check out guile-syntax-parse at > https://gitorious.org/guile-syntax-parse/guile-syntax-parse How is this going? Are you still using it? You didn't get any responses, but I'm still curious to see it working. Syntax-parse sounds l

Re: Associate type information to tree-il expansions

2011-11-23 Thread Andy Wingo
Stefan, I must apologize for not responding to your mails! Or rather, for responding so late. Apologies in any case. On Sat 14 May 2011 20:57, Stefan Israelsson Tampe writes: > (macroexpand '(let ((A : integer 1)) A)) > $2 = # (integer))> Obviously we'd need to type everything else, but OK.

Re: Paths as sequences of path components

2011-11-23 Thread Andy Wingo
Hi Mark! Some wise man once said, "I want you back". Was it Justin Timberlake in the Backstreet Boys? Am I mixing up the boy-bands of yore? In any case, we miss your hack-energy in Guile :-) On Mon 23 May 2011 22:14, Mark H Weaver writes: > I really like the basic gist behind Noah's proposal

Re: Cross-compilation support

2011-11-23 Thread Ludovic Courtès
Hello Guilers, A few more fixes later, I tested cross-compilation from x86_64-*-linux-gnu to i586-*-gnu, which isn’t a huge challenge given that the endianness is the same, but it works (cf. ‘xbuild_gnu’ at .) Thanks, Ludo’.

"exec" procedures don't handle the optional parameters unbounded situation?

2011-11-23 Thread Nala Ginrut
I found "exec" serial procedures didn't check the unbounded optional parameters. (execlp "ls") ==> segment fault (execlp "ls" "") ==> success ---cut-- .. char *exec_file; char **exec_argv; scm_dynwind_begin (0); exec_file = scm_to_loc