[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: What's wrong here?



> (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