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: Declaring Lisp function types Date: Mon, 29 Apr 2024 14:42:29 -0400 Message-ID: References: <8634sdjgoj.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21931"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: Eli Zaretskii , emacs-devel@gnu.org, stefankangas@gmail.com, adam@alphapapa.net, arthur.miller@live.com To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Apr 29 20:42:55 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 1s1Vxn-0005XY-BA for ged-emacs-devel@m.gmane-mx.org; Mon, 29 Apr 2024 20:42:55 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1s1VxQ-0004GP-Ec; Mon, 29 Apr 2024 14:42:32 -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 1s1VxO-0004G2-Pw for emacs-devel@gnu.org; Mon, 29 Apr 2024 14:42:31 -0400 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 1s1VxN-0007de-Uj; Mon, 29 Apr 2024 14:42:29 -0400 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=4jGdHHs3Qg1w+MTntwZYXVidrKSbxCzrORSyhLAQgw4=; b=BrUqUlV8wRtF1waQuZtk MvFnb/roj4CABRKN6rJFBth3Tldw3Kn6Desz4sil0F7NRbSzKSXKqQtZUOW+l8u1O+MS5O1G3IBAI dT9TIQXPJEpWd3GwztzVRGOgSm8LDpgUUrDKAzPeQENdLXB/ZBzwk6rFp0ZR3z8JGVgkcbFZMz/Tv Q1JbMSD9yMXG5Frax4XMn+WMc5nGe3z9VIGlMhed/78w7pvg7jUD5WeyOSFTh5lO8c4wxy4flGTNT 1OdcgC9Ia3ZMCXMqSaT6+CJwBjBokkHQgrDqarbu3ewqAb3VKqmZadYhuAqq/o7SqqxQrB9jxbRcW Fw7AIkOTgp9log==; Original-Received: from acorallo by fencepost.gnu.org with local (Exim 4.90_1) (envelope-from ) id 1s1VxN-0001kb-JP; Mon, 29 Apr 2024 14:42:29 -0400 In-Reply-To: (Stefan Monnier's message of "Mon, 29 Apr 2024 13:55:22 -0400") 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:318376 Archived-At: Stefan Monnier writes: >> Here we go, I pushed on 'scratch/lisp-func-type-decls' the >> implementation of what we discussed with a doc entry. Any suggestion or >> is it okay for master? > > Looks pretty good, but I wish the symbol property's name would make it > clear it's talking about the type of what's in the symbol's "function > cell" rather than any other role the symbol may be playing as well. > So maybe `function-type` instead of `declared-type`? Right, done now :) Andrea