Does CLOS allow slot names to be keywords?430 (3/6/2006 10:08:25 PM) comp.lang.lisp OK, a colleague ran into trouble porting some existing code to a new lisp implementation. The problem centered around the use of keyword symbols to name slots: (defclass some-class () ((:slot1 :accessor sl... tar
Common Lisp code documentation.032 (9/1/2004 5:23:47 PM) comp.lang.lisp OK, I've seen some threads here recently about tools for documenting Common Lisp code. A long while back, I threw together some code for producing (skeletal) LaTeX files for code documentation by walking sour... tar
Loom KR language is now open source.031 (5/12/2004 12:48:40 AM) comp.lang.lisp I am pleased to announce that the Loom group has changed the licensing terms of the Loom(tm) Knowledge Representation Language. It is now provided under the terms of an open source license with no commercial ... tar
English Idiom in Unix: Directory Recursively12225 (5/17/2011 10:26:42 PM) comp.lang.lisp might be of interest. =E3=80=88English Idiom in Unix: Directory Recursively=E3=80=89 http://xahlee.org/comp/idiom_directory_recursively.html ------------------------------------------ English Idiom in Unix: D... xahlee(818)
Figuring out types1220 (5/20/2011 5:32:29 AM) comp.lang.lisp Hi, I am working on understanding how Lisp typing works. As a motivating example I worked up this function: ;;;;;;;;;;; (defun vector-to-number (seq) "Given 8-bit numbers - assume they are a packed integer ... vlionix(8)
[newbie] SETF inside DEFUN does not work1719 (6/8/2011 3:20:21 PM) comp.lang.lisp Hi A completely basic question, but can anyone tell me why the use of SETF inside of DEFUN does not work? An example: (defparameter *alist* nil) (defun add-to-alist (key value alist) (setf alist (acons key ... simply.nitaai(34)
Not understanding how to write low-level code in Lisp1317 (6/8/2011 7:25:26 PM) comp.lang.lisp Hello everyone, I've read a few times now about compilers, interpreters, and systems for Lisp written in Lisp itself. I would also like to write a Lisp system in Lisp but have trouble understanding how to writ... patrickli.2001(9)
ternary cons?3823 (6/15/2011 2:34:26 AM) comp.lang.lisp Have any lisp dialects experimented with a cons cell having three parts? I haven't thought much about a good printable representation; but this seems like it could be a convenient multi-use structure. - bin... dherring1(548)
Stella project219 (6/20/2011 11:52:38 AM) comp.lang.lisp I have recently 're-discovered' the old stella project(http:// www.isi.edu/isd/LOOM/Stella/) and was surprised that such a work is not very well known/advertised by the community. I did not have time to study i... franco(241)
package error in cl-pdf1323 (6/23/2011 8:17:34 PM) comp.lang.lisp This must be a stupid, newbie error, but I don't know what's happened or how to fix it. I got cl-pdf, installed it in the same directory as lisp, and tried to compile the example source listing. Below is a port... cartercc(419)
write to two open files1926 (7/26/2011 5:05:00 PM) comp.lang.lisp I've done my due diligence and cannot fine the answer. How do I open two output files at once to write data to? Does WITH- OPEN-FILE support the opening of two output files at the same time? I'm opening a dat... cartercc(419)