From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andrea Corallo Newsgroups: gmane.emacs.devel Subject: Re: master 1d9d07fb00e 3/3: (cl--typeof-types): Rework to fix some regressions Date: Tue, 05 Mar 2024 12:25:28 -0500 Message-ID: References: <170950733941.30552.13228431602613197760@vcs2.savannah.gnu.org> <20240303230900.51D39C12C5F@vcs2.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="32347"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: emacs-devel@gnu.org, Eli Zaretskii To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Mar 05 18:26:15 2024 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 1rhYYP-00088N-5q for ged-emacs-devel@m.gmane-mx.org; Tue, 05 Mar 2024 18:26:13 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rhYXl-000775-Sa; Tue, 05 Mar 2024 12:25:33 -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 1rhYXk-00076i-89 for emacs-devel@gnu.org; Tue, 05 Mar 2024 12:25:32 -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 1rhYXj-00012F-Bi; Tue, 05 Mar 2024 12:25:31 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=oltRRIvley2Mc6UCQS+WoUO3FkarmJlgvlZYZJ7Efcw=; b=cDNzCyxoc0Oq2yVowtJN 8AO27HQSUiYYkoUx3QwIZEqaWhcOnqlt+ZmcwUw8A0IRJiYjAjsXByZdJBcgcai5o355+ZqhV84te OPvniBamEbjcnfzxLJiRvDjUrQeQWOlotqGRGwWzzJTlVBZ1ot8PiRGF/g0xxyF+XX79SyLwH7Put DDz5DS2tTR3wRiQ5TYwb66JY3wbZodih3PsGdgTb8K+8cJeW1NqBsFUBNj4xZt0YbYJUhy4vlVCSj WR9SJCuedQZGqtt+kKMCxsPMYNnNKKABO2NqvsgET14Em+wvgKuvC8WDGnRhVt2ODOqdr5C3k2fwQ ctiJv5yVAl6XMQ==; Original-Received: from acorallo by fencepost.gnu.org with local (Exim 4.90_1) (envelope-from ) id 1rhYXh-00012x-CW; Tue, 05 Mar 2024 12:25:30 -0500 In-Reply-To: (Stefan Monnier's message of "Tue, 05 Mar 2024 10:30:56 -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:316842 Archived-At: Stefan Monnier writes: >> PS the DAG looks pretty cool now =F0=9F=99=82, I'm wondering tho if we s= hould show >> as well types like transient*, which don't come preloaded. > > Yeah, I'm not sure what to include and what not. I put some transient-* > in there because I thought it would be nice to include some examples of > EIEIO objects and among the few we have in Emacs's own files I figured > Transient was the library most "worthy" of being advertised =F0=9F=99=82 I see, ATM in objects.texi we have before the DAG "The Lisp Type Hierarchy for primitive types can be represented as follows:". For "primitive types" I meant types which comes to the user preloaded. Anyway I think we have either to change the doc or the DAG to be coherent. In the manual I'd personally expect to see only the primitive (preloaded/predefined?) types, but maybe it's just me. This leads me wondering if syncdoc-type-hierarchy.el shouldn't automatically render the DAG using all types of an emacs -Q using like to 'comp--compute-typeof-types' to pick all types defined ATM. It would be less arbitrary but maybe too verbose? Thanks Andrea