From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ken Raeburn Newsgroups: gmane.lisp.guile.devel Subject: Re: %nil once again Date: Sun, 19 Jul 2009 23:33:38 -0400 Message-ID: References: <4A5F2F8A.5040108@domob.eu> <8763drbv07.fsf@arudy.ossau.uklinux.net> <4A603E36.7080100@domob.eu> <87ab30bk8p.fsf@arudy.ossau.uklinux.net> <4A63778E.3010109@domob.eu> <87skgsa0xz.fsf@arudy.ossau.uklinux.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v935.3) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1248061573 20679 80.91.229.12 (20 Jul 2009 03:46:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 20 Jul 2009 03:46:13 +0000 (UTC) Cc: Andy Wingo , Daniel Kraft , guile-devel To: Neil Jerram Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Jul 20 05:46:05 2009 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MSjpE-0004Wg-AD for guile-devel@m.gmane.org; Mon, 20 Jul 2009 05:46:04 +0200 Original-Received: from localhost ([127.0.0.1]:46759 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MSjpD-0007qS-OI for guile-devel@m.gmane.org; Sun, 19 Jul 2009 23:46:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MSjoN-0006qa-R5 for guile-devel@gnu.org; Sun, 19 Jul 2009 23:45:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MSjoJ-0006lq-Bc for guile-devel@gnu.org; Sun, 19 Jul 2009 23:45:11 -0400 Original-Received: from [199.232.76.173] (port=33468 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MSjoI-0006lg-Vh for guile-devel@gnu.org; Sun, 19 Jul 2009 23:45:07 -0400 Original-Received: from splat.raeburn.org ([69.25.196.39]:43937 helo=raeburn.org) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MSjoA-00016V-Su for guile-devel@gnu.org; Sun, 19 Jul 2009 23:45:06 -0400 Original-Received: from [10.0.0.172] (squish.raeburn.org [10.0.0.172]) by raeburn.org (8.14.3/8.14.1) with ESMTP id n6K3XcVe028707; Sun, 19 Jul 2009 23:33:38 -0400 (EDT) In-Reply-To: <87skgsa0xz.fsf@arudy.ossau.uklinux.net> X-Mailer: Apple Mail (2.935.3) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:8893 Archived-At: On Jul 19, 2009, at 16:10, Neil Jerram wrote: >> BTW, I implemented also the function bindings of symbols using this >> fluid-based dynamic scoping at the moment -- but on second thought, >> there's no scoping at all for function slots (all are global), is >> there? > > No, I don't think there is. `let' can't operate on function slots. Not in the main emacs lisp implementation. However, cl-macs.el provides an "flet" macro that does work on function slots; it uses the "letf" macro which expands to include a use of unwind-protect to do its dirty work. Ken