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