From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: carlmarcos--- via Users list for the GNU Emacs text editor Newsgroups: gmane.emacs.help Subject: Re: Placement of list within an interactive clause Date: Thu, 14 Jul 2022 21:24:14 +0200 (CEST) Message-ID: References: Reply-To: carlmarcos@tutanota.com Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="28853"; mail-complaints-to="usenet@ciao.gmane.io" Cc: help-gnu-emacs@gnu.org To: Stefan Monnier Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Thu Jul 14 21:24:43 2022 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 1oC4S3-0007I3-1e for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 14 Jul 2022 21:24:43 +0200 Original-Received: from localhost ([::1]:45958 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oC4S1-0007T0-Q1 for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 14 Jul 2022 15:24:41 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:48712) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oC4Rd-0007Qb-If for help-gnu-emacs@gnu.org; Thu, 14 Jul 2022 15:24:17 -0400 Original-Received: from w1.tutanota.de ([81.3.6.162]:37400) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oC4Rb-00006d-Si for help-gnu-emacs@gnu.org; Thu, 14 Jul 2022 15:24:17 -0400 Original-Received: from w3.tutanota.de (unknown [192.168.1.164]) by w1.tutanota.de (Postfix) with ESMTP id 3082EFBF925; Thu, 14 Jul 2022 19:24:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1657826654; s=s1; d=tutanota.com; h=From:From:To:To:Subject:Subject:Content-Description:Content-ID:Content-Type:Content-Type:Content-Transfer-Encoding:Content-Transfer-Encoding:Cc:Cc:Date:Date:In-Reply-To:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:References:Sender; bh=06/0ePa4NbcmQEjanUScpZ5Sqvlnpoa3jrNJd/WktlY=; b=pvLlES13XK7x5wLXuQoY3/JuuswA39sXPr24M5SuS69AZY5hvWxgnccYTqL320o9 yq4CC3nHWinAEegbz8rIkCm7dAT7FcPqpWt5zCwoQAhZ2zyUj+IJpm1czPeEiYlc2br 8G90TnIVDD/+WKQee4NpjFAlQx3dyHWc+urCwJD4Vedz12RW2U8muRQN+r3tftLneeo dHMReRsOYtTe7o1U863Flubv554Xd1N5+auo0BMtZHw9lM6jW6z0sDNRzcau1iQISCH 6n/1frZ/SrqKj42OpNnq7hflCB7A1Uzd6ksXjd/hWWHzL565c04LNRKhFDQxqejBd+a 8NrM8W4JQg== In-Reply-To: Received-SPF: pass client-ip=81.3.6.162; envelope-from=carlmarcos@tutanota.com; helo=w1.tutanota.de 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" Xref: news.gmane.io gmane.emacs.help:138469 Archived-At: Jul 14, 2022, 18:34 by help-gnu-emacs@gnu.org: >> Does it make difference where the list statement is placed? >> > > Write the code the way you find most convenient. > The syntax is: > > (defun FOO (...) > (interactive EXP) > ...) > > where EXP is *any* code whose evaluation returns a list of values. > > In that case an interactive call to FOO will behave like (apply #'FOO EXP) > > Stefan > When using ` (interactive (list (if condition (body))))', would the commands in the body of the if statement form part of the list? Does the same apply if using ` (let ' instead of ` (if ', where the body be part of the list entries?