Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
118 views

browse definitions in LISP

I am very new to LISP. I am using allegro-cl. I am having difficulty calling a function I have defined and loaded. I would like to know what are some ways I can browse the things I have defined, ...
2
votes
2answers
148 views

ASDF-Install: Error: component “zip” not found

I'm trying to install the zip library. wonko:Desktop andrew$ alisp International Allegro CL Free Express Edition 8.2 [Mac OS X (Intel)] (Jan 25, 2010 14:49) Copyright (C) 1985-2010, Franz Inc., ...
2
votes
2answers
234 views

How can I do setf on a struct's accessors when using intern

I'd like to setf different fields of a struct depending on a certain variable. I decided to use the following approach: Generate a string with the field's accessor name: (setq my-string (format nil ...
1
vote
2answers
134 views

Change an editable-text value in Allegro CL

I'm trying to change the value of an Editable-Text control in Allegro CL (version 8.0.1) by clicking a Default-Button. I've read about (setf value) but haven't found any examples. The function I ...
0
votes
2answers
56 views

“Invalid EXCL::PREDICATE argument” error in Common Lisp

I'm making a classroom excercise in LISP, and I'm getting this error CG-USER(286): Error: Invalid EXCL::PREDICATE argument: #<Vector @ #x20fd488a> [condition type: SIMPLE-ERROR] Could ...