On 1/19/06, Arie van Wingerden xapwing@gmail.com wrote:
Hi,
when trying to install LTK I get an error with (use-package 'ltk)
Some lisps (CLISP, for example) put symbols that conflict with Ltk in the CL-USER package. The solution is to get a little bit more of an introduction to the package system, and make an LTK-USER package as follows:
(compile-file "ltk") (load "ltk") (defpackage :ltk-user (:use :common-lisp :ltk)) (in-package :ltk-user)
Now you should be able to proceed as in the examples.