Re: Lispbox and Lisp Toolkit on Windows



ogliomus wrote:
I am trying Lispbox on Windows 2000 together with the Lisp Toolkit of
Peter Herth. I am new to Lisp. How do I solve the following name
conflict? I don't get the error using Clisp interpreter outside
Lispbox (Emacs).

CL-USER> (load "c:\\lispbox-0.6\\ltk\\ltk")
T

CL-USER> (use-package :ltk)
(USE-PACKAGE (#<PACKAGE LTK>) #1=#<PACKAGE COMMON-LISP-USER>): 1 name
conflicts remain
Which symbol with name "VALUE" should be accessible in #1#?

   [Condition of type SYSTEM::SIMPLE-PACKAGE-ERROR]
.... ecc. ecc.

Thanks.
GC
Hi,

while I have no idea where the definition of value comes from,
it sounds like a symbol conflict, that is, you try to import
the symbol value from Ltk, which is already defined in your
CL-USER package. To resolve that, you could either try
(unintern 'value) before the use-package or refer to the
Ltk symbols without usepackage as in ltk:with-ltk.

Peter

--
Ltk, the easy lisp gui http://www.peter-herth.de/ltk/
.