[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: What's wrong here?
- To: clisp-list@ma2s2.mathematik.uni-karlsruhe.de
 
- Subject: Re: What's wrong here?
 
- From: haible (Bruno Haible)
 
- Date: Wed, 28 Apr 93 12:06:53 +0200
 
> (defun foo ()
>  (let ((x (make-flugblog)))
>   (eval '(flugblog-color x))))
Every time you use EVAL you must be doing something wrong. Simply write
(defun foo ()
  (let ((x (make-flugblog)))
    (flugblog-color x)
) )
                    Bruno Haible
                    haible@ma2s2.mathematik.uni-karlsruhe.de