From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.help Subject: Re: add-hook Date: Thu, 07 Jun 2007 16:01:12 +0200 Organization: sometimes Message-ID: <87k5ufuamv.fsf@ambire.localdomain> References: <87bqft5no4.fsf@moley.org> <87tztktes8.fsf@ambire.localdomain> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1181227245 23583 80.91.229.12 (7 Jun 2007 14:40:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 7 Jun 2007 14:40:45 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jun 07 16:40:44 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HwJAH-0007yz-I9 for geh-help-gnu-emacs@m.gmane.org; Thu, 07 Jun 2007 16:40:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HwJAH-0001DK-3C for geh-help-gnu-emacs@m.gmane.org; Thu, 07 Jun 2007 10:40:41 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!uio.no!quimby.gnus.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 16 Original-NNTP-Posting-Host: ppp-102-33.21-151.libero.it Original-X-Trace: quimby.gnus.org 1181224872 1705 151.21.33.102 (7 Jun 2007 14:01:12 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Thu, 7 Jun 2007 14:01:12 +0000 (UTC) User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:4U8qnyutCxY7LrcTQQHf+CYOlSI= Original-Xref: shelby.stanford.edu gnu.emacs.help:149165 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:44754 Archived-At: () Sebastian Tennant () Thu, 07 Jun 2007 13:00:44 +0300 (info "(elisp)Anonymous Functions"): In Lisp, a function is a list that starts with `lambda', a byte-code function compiled from such a list, or alternatively a primitive subr-object; names are "extra." you can test this in *scratch*: ((lambda (n) (+ n (* n n))) 6) (funcall (byte-compile (lambda (n) (+ n (* n n)))) 6) thi