Re: patching gcc to allow other calling conventions

2012-06-21 Thread Daniel Krueger
Hey, On Thu, Jun 21, 2012 at 2:32 PM, Stefan Israelsson Tampe stefan.ita...@gmail.com wrote: Why not specify the logic in scheme and output it either to C or Assembler :-) That sounds very cool, and would be very cool, I thought first, but then I realized that you wouldn't be able to bootstrap

Re: patching gcc to allow other calling conventions

2012-06-21 Thread Daniel Krueger
On Thu, Jun 21, 2012 at 7:50 PM, Stefan Israelsson Tampe stefan.ita...@gmail.com wrote: On a second thought guile do have an initital interpreter that is either a vm or a native no? Perhaps one can make use of that somehow! Yeah, I thought about that too, but thought first that it would be

Re: Separate textual/binary ports vs. mixed ports

2012-06-05 Thread Daniel Krueger
Hey, I think if you only use them seperate there's a clearer distinction. If you have it mixed you can do some, say hacking, where you see it works but you can't see anywhere what you're exactly doing, most of it is hidden in the guile implementation, which interprets

Re: %default-port-conversion-strategy and string ports

2012-06-03 Thread Daniel Krueger
Hey, I don't want to comment on what guile should choose to do in the future but just wanted to say which interface would be clear to me. In the first place I agree that ports should be seperated and not mixed textual/binary (mind, I know it may be that this can't be just changed that easily in

Re: Patches for module/ice-9/occam-channel.scm

2012-05-18 Thread Daniel Krueger
Hey, sorry for being so inactive in the last days (weeks?), I'm just having some free time after my final exams here. Yeah, I would assign the copyright to the FSF, I already read this but thought I'll cope with that later^^ - Daniel On Wed, May 16, 2012 at 12:37 AM, Mark H Weaver

Re: Patches for module/ice-9/occam-channel.scm

2012-05-06 Thread Daniel Krueger
the patches. And I hate to ask you for more after you've already contributed, but if you are able, could you write some documentation or tests for this module? It could badly use both of those things. Thanks a lot, Noah On Mon, Apr 30, 2012 at 8:42 AM, Daniel Krueger keen...@googlemail.com

Patches for module/ice-9/occam-channel.scm

2012-04-30 Thread Daniel Krueger
Hi, I've done some work on (ice-9 occam-channel) and fixed the module exports, the alt macro and extended it a little bit. Here are the patches, but they are all just micro-commits, I hope that is okay. - Daniel 0001-fixed-exports-of-module-ice-9-occam-channel.scm.patch Description: Binary

Re: simple syntax expression faiilure,

2012-04-21 Thread Daniel Krueger
Hi, I think the problem is #,@ is used to merge a list into the expression (just like ,@) and #'a is only the syntax object of the symbol a instead of a list. If you say #`(#,#'a #,@#'(a)) it works. Daniel On Thu, Apr 19, 2012 at 10:17 PM, Stefan Israelsson Tampe stefan.ita...@gmail.com wrote: