[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: open coding of (function (lambda ...))
- To: tim.unc@UDel-Relay
- Subject: Re: open coding of (function (lambda ...))
- From: UCBKIM.jkf@Berkeley (John Foderaro)
- Date: Sat, 26 Mar 83 16:46:28 GMT
- Cc: franz-friends@Berkeley
- In-reply-to: Your message of 25 Mar 83 15:03:29 EST (Fri)
- Original-date: 26 Mar 83 08:46:28 PST (Sat)
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)))))