
________________________________ From: Dean O'Connor [mailto:dean.oconnor@ite.com.au] Sent: Wednesday 30 August 2006 17:10 To: Goffioul Michael Subject: [Fwd: example apropos.lisp failed to load in ECL] hello michael I subscribe to the ECL mail list and was having a look at RDNZL. Pretty cool stuff. I just noticed an loading error for one of the examples. I tried to send the below info to the mail list but got rejected cause I wasn't subscribed - and don't really want to for just this one small thing. I assume you are, and was wondering if you'd mind posting this sometime. ps. I was very impressed by RDNZL. One of the few lisp packages I've downloaded and run (as per documentation) without hassle in ECL. cheers dean. -------- Original Message -------- Subject: example apropos.lisp failed to load in ECL Date: Thu, 31 Aug 2006 00:49:08 +1000 From: Dean O'Connor <dean.oconnor@ite.com.au> <mailto:dean.oconnor@ite.com.au> To: rdnzl-devel@common-lisp.net hello just trying out your RDNZL examples with ECL and noticed that apropos.lisp failed to load. RDNZL-USER> (load "examples/apropos.lisp") ;;; Loading "F:/projects/lisp/RDNZL-0.10.3/examples/apropos.lisp" (:CORMANLISP :ECL) is not a valid feature expression. Broken at LOAD. RDNZL-USER>> This change worked for me in ECL. In function copy-to-clipboard, I changed this line: #+(:cormanlisp :ecl) (setq apropos-text (lf-to-crlf apropos-text)) to this: #+(or :cormanlisp :ecl) (setq apropos-text (lf-to-crlf apropos-text)) Cheers deano