From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/55997 Path: main.gmane.org!not-for-mail From: bojohan+news@dd.chalmers.se (=?iso-8859-1?q?Johan_Bockg=E5rd?=) Newsgroups: gmane.emacs.gnus.general Subject: Re: calling gnus-group-mail with a groupname Date: Tue, 13 Jan 2004 18:00:48 +0100 Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1074014713 16045 80.91.224.253 (13 Jan 2004 17:25:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 13 Jan 2004 17:25:13 +0000 (UTC) Original-X-From: ding-owner+M4537@lists.math.uh.edu Tue Jan 13 18:25:08 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AgSHr-00030K-00 for ; Tue, 13 Jan 2004 18:25:07 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1AgSHc-0003dE-00; Tue, 13 Jan 2004 11:24:52 -0600 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1AgRuL-0003Wl-00 for ding@lists.math.uh.edu; Tue, 13 Jan 2004 11:00:49 -0600 Original-Received: from quimby.gnus.org (quimby.gnus.org [80.91.224.244]) by justine.libertine.org (Postfix) with ESMTP id 56F353A0083 for ; Tue, 13 Jan 2004 11:00:49 -0600 (CST) Original-Received: from news by quimby.gnus.org with local (Exim 3.35 #1 (Debian)) id 1AgRuK-000541-00 for ; Tue, 13 Jan 2004 18:00:48 +0100 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 15 Original-NNTP-Posting-Host: frealaf.dd.chalmers.se Original-X-Trace: quimby.gnus.org 1074013248 18796 129.16.116.16 (13 Jan 2004 17:00:48 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Tue, 13 Jan 2004 17:00:48 +0000 (UTC) Mail-Copies-To: never User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.2 (usg-unix-v) Cancel-Lock: sha1:pIUxDvnJg1j1qZn4lH1BUON3bFo= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:55997 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:55997 Lars Magne Ingebrigtsen writes: > I've never used flet in Emacs Lisp -- doesn't it have lexical scope? > If it does, that would explain what you're seeing. (If not, then > it's weirder.) No (info "(cl)Function Bindings"): While `flet' in Common Lisp establishes a lexical binding of NAME, Emacs Lisp `flet' makes a dynamic binding. The result is that `flet' affects indirect calls to a function as well as calls directly inside the `flet' form itself. --=20 Johan Bockg=E5rd