Search found 27 matches

by phil
Wed Dec 17, 2008 2:51 pm
Forum: Common Lisp
Topic: ANN: ABLE 0.16
Replies: 5
Views: 11261

Re: ANN: ABLE 0.16

Could you list what libraries you bundle with Able? I cannot find that information on your home page. Sure, presently I bundle: alexandria babel_0.3.0 cffi_0.10.3 cl-fad-0.6.2 cl-ppcre-2.0.1 cl-unicode-0.1.1 flexi-streams-1.0.7 ltk-0.91 trivial-features_0.3 trivial-gray-streams-2006-09-16 tstree .....
by phil
Fri Dec 12, 2008 2:57 pm
Forum: Common Lisp
Topic: ANN: ABLE 0.16
Replies: 5
Views: 11261

Re: ANN: ABLE 0.16

Neat. Is ABLE written in CL itself? If so, which windowing toolkit does it use?
Yep it's 100% CL and uses LTK which interfaces to Tk.
by phil
Fri Dec 12, 2008 2:37 pm
Forum: Common Lisp
Topic: ANN: ABLE 0.16
Replies: 5
Views: 11261

ANN: ABLE 0.16

ABLE is a Common Lisp environment for Linux, Windows and Mac OS X featuring tabbed editing, a listener with command history, symbol completion, syntax highlighting, parenthesis matching, automatic indentation, call-tips and Hyperspec lookup. Version 0.16 adds a few new things, most notably the often...
by phil
Sat Nov 15, 2008 4:48 am
Forum: Common Lisp
Topic: How to use ASDF in SBCL 1.0.22 (Vista) ?
Replies: 1
Views: 6357

Re: How to use ASDF in SBCL 1.0.22 (Vista) ?

I don't know if anything has changed in more recent versions of SBCL or if things differ with Vista over XP but I posted an answer to a similar question here before: http://www.lispforum.com/viewtopic.php?f=2&t=103#p691 I don't use asdf-install myself as with this method all you need to do is do...
by phil
Tue Sep 16, 2008 5:55 am
Forum: Common Lisp
Topic: Poll: Which Lisp implementations do you use?
Replies: 32
Views: 92676

Re: Poll: Which Lisp implementations do you use?

I use SBCL on Linux, CCL on MacOS X and CLISP on Windows. I've had surprisingly few portability issues with this combination. That said, I'm interested in how SBCL is working out for people on Windows...is it at a point that you would recommend it on this platform?
by phil
Sun Aug 24, 2008 2:54 pm
Forum: Common Lisp
Topic: How to split project into multiple files
Replies: 6
Views: 15093

Re: How to split project into multiple files

If I create file1.lisp with: (load "file2.lisp") won't look for file2 in the same directory as file1. Well this should work: (let ((*load-pathname* *default-pathname-defaults*)) (load "file2")) but probably isn't recommended practice. I also tried defpackage, but packages aren't...
by phil
Wed Aug 13, 2008 1:29 pm
Forum: Common Lisp
Topic: SBCL, ASDF, Windows XP and Symlinks
Replies: 4
Views: 11550

Re: SBCL, ASDF, Windows XP and Symlinks

I use the method listed on http://www.cliki.net/asdf under the heading "Alternative Sysdef Search functionality". This sidesteps the whole symlinks issue entirely and works well for me when I need to use a Windows machine, although I suspect it may become a little slow if you have a large ...