Search found 56 matches

by Wodin
Sun Aug 31, 2008 2:50 pm
Forum: Common Lisp
Topic: Pipe program output to stream
Replies: 6
Views: 15414

Re: Pipe program output to stream

:) Cool. Of course, if you try this on Windows you get the following: [...] * (read-line (sb-ext:process-output proc)) "Microsoft Windows XP [Version 5.1.2600] NIL * (read-line (sb-ext:process-output proc)) "(C) Copyright 1985-2001 Microsoft Corp. NIL * (read-line (sb-ext:process-output pr...
by Wodin
Sat Aug 30, 2008 9:27 am
Forum: Common Lisp
Topic: Pipe program output to stream
Replies: 6
Views: 15414

Re: Pipe program output to stream

I would have thought you would want :output :stream rather than :pty t.
by Wodin
Wed Aug 20, 2008 1:47 pm
Forum: Common Lisp
Topic: Lisp, Windows and OpenGL
Replies: 8
Views: 19751

Re: Lisp, Windows and OpenGL

From what I can read to be able to create windows and such I will have somehow to use cffi to call the WinAPI? Have a look at Graphic-Forms . I haven't used it, but it seems to be what you're looking for. Of course, the web site also says: Graphic-Forms is in the alpha stage of development, meaning...
by Wodin
Thu Aug 14, 2008 11:37 am
Forum: Common Lisp
Topic: SBCL, ASDF, Windows XP and Symlinks
Replies: 4
Views: 11585

Re: SBCL, ASDF, Windows XP and Symlinks

Don't let me stop you, but others have already worked on this :) e.g.: http://www.lichteblau.com/blubba/shortcut/asdf.lisp and some other posibilities: http://bc.tech.coop/blog/041113.html and related stuff here: http://brainrack.wordpress.com/2008/05/29/symlinks-under-windows-using-sbcl-truename-as...
by Wodin
Fri Aug 08, 2008 2:41 am
Forum: Common Lisp
Topic: Favorite "underrated" Lisp feature?
Replies: 13
Views: 32245

Re: Favorite "underrated" Lisp feature?

tayssir wrote:I still wonder how he (apparently) learned about DECLARE SPECIAL before LET -- it's like he'd manually add new variables to all the DECLARE SPECIAL declarations whenever he'd need a new one.
Maybe he was reading through the CLHS index and DECLARE comes before LET? ;)
by Wodin
Mon Jul 21, 2008 5:46 am
Forum: Emacs
Topic: Slime Not Working in EMACS
Replies: 5
Views: 13709

Re: Slime Not Working in EMACS

I tried deleting the slime directory and checking it out again, but I got the same result. Oh well, then I don't know what the problem is. Do you think there would be a way to get an earlier version of SLIME to see if that would work? Yes, in the directory that you checked out slime to, do somethin...
by Wodin
Mon Jul 21, 2008 12:20 am
Forum: Emacs
Topic: Slime Not Working in EMACS
Replies: 5
Views: 13709

Re: Slime Not Working in EMACS

This looks suspicious: compilation aborted because of fatal error: READ failure in COMPILE-FILE: READER-ERROR at 19070 (line 515, column 70) on #<FILE-STREAM for "file \"/home/tss/slime/swank-sbcl.lisp\"" {9B\ 56A49}>: Symbol "FIND-DEFINITION-SOURCES-BY-NAME" not found ...
by Wodin
Mon Jul 14, 2008 4:34 am
Forum: Common Lisp
Topic: Anyone using Lisp for web in production?
Replies: 19
Views: 47390

Re: Anyone using Lisp for web in production?

JamesF wrote:Wodin: thanks! That's exactly what I needed.
Glad I could help :)
by Wodin
Fri Jul 11, 2008 1:06 am
Forum: Common Lisp
Topic: Strings, characters, and binary encodings
Replies: 9
Views: 26991

Re: Strings, characters, and binary encodings

I think you're getting tripped up by the fact that a character can be represented in various different ways (using a different number of bytes per character depending on the representation). What happens if you have a text stream made up of characters where the underlying data is in two bytes per ch...