0 Replies Last post: Dec 7, 2005 7:57 AM by vikram  
vikram Newbie 1 posts since
Dec 7, 2005
Currently Being Moderated

Dec 7, 2005 7:57 AM

Illegal lambda list element

Hi there

 

I am executing a lisp file which contains a function

 

;;; Actions and Tests

 

(defun dopopactions (regs expr hold star)

  (apply

   (lambda ,(cons 'star (cons 'hold(car regs)))

      ,@actions

      (list

        (list (quote ,(car regs))

          (list ,@(car regs))) hold))

    (cons star (cons hold (cadr regs)))

    )

  )

 

 

Now I am getting an error as

Illegal lambda list element (CONS 'STAR(CONS 'HOLD(CAR REGS)))

***-Condition of type UNDEFINED-FUNCTION

 

 

Hope to get an answer as soon as possible.

 

Regards,

Vikram Shetty

 

More Like This

  • Retrieving data ...