[ltk-user] Very noob question
Thomas F. Burdick
tfb at ocf.berkeley.edu
Fri Jan 20 06:04:30 UTC 2006
On 1/19/06, Arie van Wingerden <xapwing at 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.
More information about the ltk-user
mailing list