From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Sebastian Miele Newsgroups: gmane.emacs.help Subject: Re: Making a list of lists Date: Mon, 03 Jul 2023 18:33:27 +0200 Message-ID: <87cz19dk7a.fsf@whxvd.name> References: <87jzvhdkkz.fsf@whxvd.name> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21208"; mail-complaints-to="usenet@ciao.gmane.io" Cc: uzibalqa , help-gnu-emacs@gnu.org To: Sebastian Miele Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Mon Jul 03 18:39:03 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 1qGMZp-0005DB-1S for geh-help-gnu-emacs@m.gmane-mx.org; Mon, 03 Jul 2023 18:39:01 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qGMZG-0003y7-IL; Mon, 03 Jul 2023 12:38:26 -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 1qGMZF-0003uy-E9 for help-gnu-emacs@gnu.org; Mon, 03 Jul 2023 12:38:25 -0400 Original-Received: from mout-p-101.mailbox.org ([2001:67c:2050:0:465::101]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1qGMZD-0007Wy-4G for help-gnu-emacs@gnu.org; Mon, 03 Jul 2023 12:38:25 -0400 Original-Received: from smtp102.mailbox.org (smtp102.mailbox.org [IPv6:2001:67c:2050:b231:465::102]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-101.mailbox.org (Postfix) with ESMTPS id 4Qvs6z05Vdz9spB; Mon, 3 Jul 2023 18:38:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=whxvd.name; s=MBO0001; t=1688402299; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=49B2R3PfG3NMrXs4+4G/wF+MFnfsXQ3eCWJiwxPI024=; b=z7x/SPncKJAiBJaxLVh+2IjocHI/dnRxEephGfPoWBEs9NHR2zADzZNQ7pqCP2UJLfFWbA lL84BNZckT0NUo5uR2i/bk/e1XuZOQuu50upM2CssX5mFDEbnZL86urFEyN0DPm8VZbxic 1Xm4UzNFWX6Gg/w7pGMGbzz3FuH1ndOWPi3DPf5rFYL7lEtJEcEUKOTwjfTHaaP4Tg0380 zSDqz/NS/8oXBLB3SVEko80fWdVvMn1gx1s+lb0AY4aF2NbDf0JfqV61sgPetkHfoz4vmf LpzaV1VPZ3YszI46rh0OMdASMtJW9JtWd6Jbda4upt20M1oB1CuyQAVo+liK3A== In-reply-to: <87jzvhdkkz.fsf@whxvd.name> X-Rspamd-Queue-Id: 4Qvs6z05Vdz9spB Received-SPF: pass client-ip=2001:67c:2050:0:465::101; envelope-from=iota@whxvd.name; helo=mout-p-101.mailbox.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=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:144094 Archived-At: > From: Sebastian Miele > Date: Mon, 2023-07-03 18:24 +0200 > >> From: uzibalqa >> Date: Mon, 2023-07-03 16:18 +0000 >> >> I want to make a list of lists. Suppose I make a list by calling this function >> >> (defun linseq (&rest sequence) >> sequence) >> >> How can then I have a function that adds the list as an element to a list of lists ? > > The Emacs Lisp manual contains such information. I have to admit: I do not know in how far the Emacs Lisp manual works as a tutorial/introduction to (Emacs) Lisp for people who do not already know a Lisp. But your question suggests that you need an sufficiently gentle introduction to (Emacs) Lisp in general.