Re: [Chicken-users] Much improved customized Emacs

2012-11-23 Thread Kristian Lein-Mathisen
Hi Dan, This is great work! I too work in constrained environments, mostly on mobile phones, so I'm really looking forward to use your package. I had some problems installing it through marmelade so I added a couple github issues. K. On Fri, Nov 23, 2012 at 3:40 AM, Daniel Leslie

Re: [Chicken-users] hash table questions

2012-11-23 Thread Peter Bex
On Thu, Nov 22, 2012 at 07:56:31PM -0500, Claude Marinier wrote: Greetings fellow Schemers, Hello again, Having established in a previous post that using a u8vector as a key for a hash table is expected to work, I have some specific questions. I am still learning how to post questions

Re: [Chicken-users] hash table questions

2012-11-23 Thread Дмитрий
By the way, You're probably using the gmail web interface... You can probably select to use plain text instead of mail with markup somewhere. It's generally better to use a proper offline client; you'll have more control over how exactly the mail gets sent. If using an offline client is not

Re: [Chicken-users] Much improved customized Emacs

2012-11-23 Thread Daniel Leslie
Thanks! I appreciate the testing. WorksForMe usually doesn't cut the mustard, so your feedback is quite welcome. I fixed a few of the derps that was causing Marmalade to have issues; happy hacking! -Dan On Fri, Nov 23, 2012 at 2:26 AM, Kristian Lein-Mathisen kristianl...@gmail.com wrote:

Re: [Chicken-users] using flymake with chicken

2012-11-23 Thread Peter Bex
On Fri, Nov 23, 2012 at 08:27:32PM +0100, Peter Bex wrote: Suggestions are welcome. Flymake doesn't have default key bindings for going to the next/prev error. Maybe the mode can set up something like M-n and M-p to step between errors? Or does it make more sense to let the user do this so

[Chicken-users] undefined reference to `C_numbers_toplevel'

2012-11-23 Thread Miguel Fernandez
Hey everyone, I'm just starting out in Scheme, and trying to compile a small snippet that uses complex numbers. The code is as follows: (use numbers) (begin (display 3+3i) (newline) ) I installed the `numbers` egg with `chicken-install`, load it with `use`, and when I

Re: [Chicken-users] hash table questions

2012-11-23 Thread Kevin Wortman
Hi, This may or may not be helpful, but I'll add that, if it were me, I'd represent an IP address as a list of four fixnums rather than a u8vector. Then the default hash function will work out of the box, and many of your functions can be written more concisely. E.g. (define IPv4-addr= equal?)

Re: [Chicken-users] undefined reference to `C_numbers_toplevel'

2012-11-23 Thread Peter Bex
On Fri, Nov 23, 2012 at 12:27:29PM -0800, Miguel Fernandez wrote: Hey everyone, Hello Miguel! I'm just starting out in Scheme, and trying to compile a small snippet that uses complex numbers. The code is as follows: (use numbers) (begin (display 3+3i) (newline)

Re: [Chicken-users] using flymake with chicken

2012-11-23 Thread Daniel Leslie
Oh excellent! You may be able to remove the need for the shell script by running something like: (shell-command-to-string (format csi -SAv \%s\ || true option-or-filename)) Thanks, -Dan On Fri, Nov 23, 2012 at 11:05 AM, Felix fe...@call-with-current-continuation.org wrote: Hello!

Re: [Chicken-users] hash table questions

2012-11-23 Thread Kon Lovett
On Nov 23, 2012, at 1:58 PM, Kevin Wortman kwort...@gmail.com wrote: Hi, This may or may not be helpful, but I'll add that, if it were me, I'd represent an IP address as a list of four fixnums rather than a u8vector. Then the default hash function will work out of the box, and many of

Re: [Chicken-users] hash table questions

2012-11-23 Thread Peter Bex
On Fri, Nov 23, 2012 at 02:19:10PM -0800, Kon Lovett wrote: On Nov 23, 2012, at 1:58 PM, Kevin Wortman kwort...@gmail.com wrote: Hi, This may or may not be helpful, but I'll add that, if it were me, I'd represent an IP address as a list of four fixnums rather than a u8vector. Then