Search found 4 matches

by E_Blackadder
Wed Jan 11, 2012 8:08 pm
Forum: Common Lisp
Topic: Save and load a SBCL image from/to emacs
Replies: 1
Views: 5024

Save and load a SBCL image from/to emacs

Hi all, My FreeBSD machine has had a panic and wants to shutdown, and I have a rather large SBCL image running from within EMACS/Slime. I was wondering if I could save the image with (save-lisp-and-die) from the REPL but then when I restart how do I tell EMACS to loaded this saved image next time? T...
by E_Blackadder
Sun Dec 18, 2011 7:38 pm
Forum: Common Lisp
Topic: Newbie in Lisp
Replies: 12
Views: 19315

Re: Newbie in Lisp

If your're really wanting to program the Windows API (I warn you its a evil land), I think that Corman Common Lisp has pretty good Win32 abilities but I have not used it myself, same with Lispworks, sadly not free or portable to other platforms.

E_Blackadder
by E_Blackadder
Fri Dec 16, 2011 2:59 pm
Forum: Common Lisp
Topic: CLX keyboard input, save character code
Replies: 2
Views: 5410

Re: CLX keyboard input, save character code

The (char-code) part I have working but when a button is pressed I can't get CLX to return the character code for me to use from the keyboard. Right now if I start my program and press 'a' on the keyboard the :key-event clause just returns NIL. So far the CLX tutorial and documentation hasn't help a...
by E_Blackadder
Thu Dec 15, 2011 11:43 pm
Forum: Common Lisp
Topic: CLX keyboard input, save character code
Replies: 2
Views: 5410

CLX keyboard input, save character code

Hello all, my first post here, To learn a little more of Common Lisp I have spent today trying to write a terminal emulator for Lisp using the CLX library. So far I have most of it working apart from the keyboard (somewhat important for a terminal). I have the :key-press event like: (:key-press (key...