From poenikatu at fastmail.co.uk Wed Mar 26 06:42:52 2014 From: poenikatu at fastmail.co.uk (Sian Mountbatten) Date: Wed, 26 Mar 2014 06:42:52 +0000 Subject: Compiling/installing McCLIM on LispWorks 6.1 Professional Edition Message-ID: <20140326064252.3b369b33.poenikatu@fastmail.co.uk> Dear List I have tried to load McCLIM onto my copy of LispWorks and have discovered the following error: In the file mcclim-20140316-git/Lisp-Dep/fix-lispworks.lisp, the last form is (defmethod clim-mop:class-direct-superclasses ((instance (eql *ptype-t-class*))) (list (find-class 'standard-object))) ;; scary.. I have discovered that *ptype-t-class* is defined in file presentations.lisp (line 754), but is nowhere given a value. Thus the parameter "instance" of the method defined above cannot be specialized on *ptype-t-class*. Please would you advise me on how to get mcclim loaded into lispworks. Your sincerely -- Dr Sian Mountbatten http://www.poenikatu.co.uk/ Associate member of the FSF no. 10888 Asocia membro de la Libera Programara Fonduso n-ro 10888 From kilian.sprotte at gmail.com Tue Mar 25 18:16:55 2014 From: kilian.sprotte at gmail.com (Kilian Sprotte) Date: Tue, 25 Mar 2014 18:16:55 +0000 (UTC) Subject: drag-and-drop-translator exclude reflexivity Message-ID: Hi, do you know how it is possible to extend the following definition of a drag-and-drop-translator so that it is not possible to link items with themselves? (define-drag-and-drop-translator connect-items (item command item command-table) (object destination-object) `(com-connect-items ,object ,destination-object)) Regards, Kilian