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

Re: open coding of (function (lambda ...))



   Liszt only compiles functions, not literals it finds in files.
To make this statement be compiled:
(setq appsum (function (lambda (x) (apply 'sum x))))

you should surround it with a function defintion:
(defun junk ()
	(setq appsum (function (lambda (x) (apply 'sum x)))))