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: Bootstrap broken between 2893cb6a21af3384cf5d6dc2b6bbdd5ebba8e1ad and 469fe6a040d6df612c00ea169670c6d8d7e58563 Date: Sun, 19 Dec 2021 19:09:32 +0200 Message-ID: <83sfuo7c8j.fsf@gnu.org> References: <87lf0km7t2.fsf@igel.home> <87y24j3ex2.fsf@gnus.org> <874k77iua9.fsf@yahoo.com> <874k773dfc.fsf@gnus.org> <875yrn1wug.fsf@gnus.org> <83bl1fe8c6.fsf@gnu.org> <87sfuqxt61.fsf@gnus.org> <83wnk2b6v2.fsf@gnu.org> <87tuf4yj4q.fsf@gnus.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="14574"; mail-complaints-to="usenet@ciao.gmane.io" Cc: luangruo@yahoo.com, larsi@gnus.org, email@johnmuhl.mx, schwab@linux-m68k.org, emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Dec 19 18:18:18 2021 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 1myzpC-0003cG-JJ for ged-emacs-devel@m.gmane-mx.org; Sun, 19 Dec 2021 18:18:18 +0100 Original-Received: from localhost ([::1]:34908 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1myzpB-0008Jp-Bn for ged-emacs-devel@m.gmane-mx.org; Sun, 19 Dec 2021 12:18:17 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:35442) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1myzgv-0001zX-9G for emacs-devel@gnu.org; Sun, 19 Dec 2021 12:09:45 -0500 Original-Received: from [2001:470:142:3::e] (port=39614 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1myzgu-0005rY-6f; Sun, 19 Dec 2021 12:09:44 -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=7q8F3B84htnps7A9AbuPapMpA2htc41K8yuueT4BzOw=; b=MqQE6+UnZFDq k9kzfhGWv6Sf+0OwMRg1BoAiYwSewOwqvXhZZkFnaMBCI175A3+cZuos2mrSiYIv8tMbTZoF06847 XnJxdnD0SQWXUl3AVFGq8+6iQD5lCCwomKqwgfjX7WC68jRLWYsk03XpQw+Jd1t1ELy5uglqpjtH3 K7eIC8mSvHm/IVpGWrC/ZmvytjIEFa/GaoVL4rfzXJ0sZIB/KLeAXHz2dywuhh1fgQ8Uv7cdG6nek DesasFeILbngtUAhMTRQgnjHRJ+B1ifpN6j6Cf0YS1sOYNZdji2xqFuo24nbDxtrVN8B1Gy51eRZL ICTkNal05dxFmr+ass5CiA==; Original-Received: from [87.69.77.57] (port=4361 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1myzgs-0006j9-89; Sun, 19 Dec 2021 12:09:43 -0500 In-Reply-To: (message from Stefan Monnier on Sun, 19 Dec 2021 11:53:19 -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" Xref: news.gmane.io gmane.emacs.devel:282455 Archived-At: > From: Stefan Monnier > Cc: Eli Zaretskii , luangruo@yahoo.com, emacs-devel@gnu.org, > schwab@linux-m68k.org, email@johnmuhl.mx > Date: Sun, 19 Dec 2021 11:53:19 -0500 > > >> Then maybe the easiest solution would be to stop using a special > >> autoloads file for rmail, and just have it use loaddefs.el? > > Yes, I think that sounds like a good idea -- I have no idea why rmail > > has its own loaddefs in the first place. > > Usually it's done for autoloads that are only used internally to > a package so as to reduce the number of "useless" autoloads in > loaddefs.el (and along with it, the size of Emacs's pdump heap). The number of Rmail autoloads is not large, and OTOH quite a few Lisp files in Emacs reference Rmail this way or another. The emacs.pdmp file grew by 1.7KB when I added Rmail autoloads to loaddefs.el. So I think it makes little sense to complicate our build procedure for such small gains, and I've now removed rmail-loaddefs.el file on the master branch.