From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: seq.el and the complexity of Emacs Lisp. Date: Mon, 06 Nov 2023 14:28:22 +0200 Message-ID: <83r0l32hi1.fsf@gnu.org> References: Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="31854"; mail-complaints-to="usenet@ciao.gmane.io" Cc: gerd.moellmann@gmail.com, paaguti@gmail.com, emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Nov 06 13:29:51 2023 Return-path: Envelope-to: ged-emacs-devel@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 1qzyjm-000873-Qk for ged-emacs-devel@m.gmane-mx.org; Mon, 06 Nov 2023 13:29:50 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qzyik-0008OD-Fi; Mon, 06 Nov 2023 07:28:46 -0500 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 1qzyih-0008N3-0A for emacs-devel@gnu.org; Mon, 06 Nov 2023 07:28:43 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qzyig-0005NG-Jv; Mon, 06 Nov 2023 07:28:42 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=j46S+ybzm++iCzjbh3LTmIAWY2h8XOTNKjrQTTFC+j4=; b=WInziKc8UMN8 +jBO1uPEnt9bpMDJS76X+QzOFMYL7USA89qsk+SOqv9Y8WtWzl2UUQJZNpr+40GkhJk1VINOdq2yH Ndm5v8o5CJL9XvVRZWXOGMkJ+j8h5QlvmiebaKumsYWP++e0elRiPjfBIYtcER7X8DAPADmdNQ9zM ahmWns91xOG9noaohPtBjX7/O3X1MY9YXjxx+XIburAkgOhrF2NJhXvg6ha2yt7lYESqRIDzvzl4V 0UMgPjxTJnrePmbyXd3D2/VeWtVOhLPOiBGlQc5+hiNzRms0HJTcM4mZH6znz/opAL1kKPiAqEX4B 3Np7rWzGxhceC9bp77g8YQ==; In-Reply-To: (message from Richard Stallman on Sun, 05 Nov 2023 21:27:25 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:312269 Archived-At: > From: Richard Stallman > Cc: paaguti@gmail.com, emacs-devel@gnu.org > Date: Sun, 05 Nov 2023 21:27:25 -0500 > > I looked at seq.el to try to get an idea what those functions do. It > was difficult to get this from the doc strings, because it wasn't > explicitly stated which ones are for users and which ones are > internal. Our convention nowadays is that any function/variable that has 2 dashes after the prefix, in this case seq--SOMETHING, is internal, and all the others are public.