From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Manuel Giraud via Users list for the GNU Emacs text editor Newsgroups: gmane.emacs.help Subject: Re: Thread and closure Date: Fri, 05 May 2023 15:40:27 +0200 Message-ID: <87fs8asxpw.fsf@ledu-giraud.fr> References: <87sfcc9ue7.fsf@ledu-giraud.fr> <87o7mzd63m.fsf@dataswamp.org> Reply-To: Manuel Giraud Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="14868"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Fri May 05 17:10:11 2023 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pux4U-0003gz-VB for geh-help-gnu-emacs@m.gmane-mx.org; Fri, 05 May 2023 17:10:11 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pux3p-0007yI-1n; Fri, 05 May 2023 11:09:29 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pux3n-0007xu-56 for help-gnu-emacs@gnu.org; Fri, 05 May 2023 11:09:27 -0400 Original-Received: from ledu-giraud.fr ([51.159.28.247]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pux3l-0007pg-IF for help-gnu-emacs@gnu.org; Fri, 05 May 2023 11:09:26 -0400 DKIM-Signature: v=1; a=ed25519-sha256; c=simple/simple; s=ed25519; bh=IrrIS2H0 P8pMQabc5bZYplzCzKav/lqCJrS+E52g3Zg=; h=date:references:in-reply-to: subject:to:from; d=ledu-giraud.fr; b=J7/qvzTZwY88lcIpM3nJuRqr4zgDTl4z3 t1G1NroPVNMQH4HsjfIaW8DiowVAgzkNXNYa0qoM9zEMzBc/TXfDw== DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=rsa; bh=IrrIS2H0P8pMQabc 5bZYplzCzKav/lqCJrS+E52g3Zg=; h=date:references:in-reply-to:subject: to:from; d=ledu-giraud.fr; b=uqcHUmt2g0lvt18OmgQ04WbCpQO/E0FZqK1UnZXFk Y1t16iCIvLz55+/pq9akONPYofaBCOYMVpN1uPOGr0Pc1qdDjd4PeLaxUE3qwMEkkCsgKb dIdTL4bAluh8Zz3CsfmhmKeU8kezrU+TKyyHADjlL9Zyd4fkI13mdDMDoKKkjNbIOBT280 gdjxYzR1eTOAO8wBzmnJpf1N05dcwBIMH+EW2zLqUrbPJs4KKECJq8hFvl8mZPwO/djEjw xxNMrUsE5vafXxJOVLxo/5lAioXdmIs3+AO8E6T0xJQa9x5NzDK0cOdqPwWC2I9q0yjqr8 Obc/ehQucBTo9JlX4CgzA== Original-Received: from computer ( [10.1.1.1]) by ledu-giraud.fr (OpenSMTPD) with ESMTPSA id 606bc51d (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for ; Fri, 5 May 2023 17:09:20 +0200 (CEST) In-Reply-To: <87o7mzd63m.fsf@dataswamp.org> (Emanuel Berg's message of "Fri, 05 May 2023 01:33:49 +0200") Received-SPF: pass client-ip=51.159.28.247; envelope-from=manuel@ledu-giraud.fr; helo=ledu-giraud.fr X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:143524 Archived-At: Emanuel Berg writes: [...] > But you can add this to your list: Thanks, > ;;; -*- lexical-binding: t -*- > > (let ((msg "Hello world!")) > (defun let-closure () > (message "%s" msg) )) > > (declare-function let-closure nil) Is this necessary? Or just to say that 'let-closure' is not defined in a file? -- Manuel Giraud