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: master 3b1fd42732f: * lisp/loadup.el: Check advice after `rmc.el`; turn error into warning Date: Sat, 16 Dec 2023 15:07:03 +0200 Message-ID: <83edfmmh3c.fsf@gnu.org> References: <170197287539.12661.7539324399514249195@vcs2.savannah.gnu.org> <20231207181435.BCB79C0C6AD@vcs2.savannah.gnu.org> <73d5b60d-afbd-4543-8001-9fe043b4b6ab@vodafonemail.de> <83wmtis4tt.fsf@gnu.org> <83zfydqmcr.fsf@gnu.org> <7996e24d-125e-4948-a3ad-9cb226884668@vodafonemail.de> <83jzpgpm19.fsf@gnu.org> <265053b2-417f-4feb-84ec-8e56886febac@vodafonemail.de> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21540"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org, monnier@iro.umontreal.ca To: Jens Schmidt Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Dec 16 14:07:53 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 1rEUOW-0005NH-N2 for ged-emacs-devel@m.gmane-mx.org; Sat, 16 Dec 2023 14:07:52 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rEUO3-0008Ap-Ph; Sat, 16 Dec 2023 08:07:23 -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 1rEUO2-0008Ae-8n for emacs-devel@gnu.org; Sat, 16 Dec 2023 08:07:22 -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 1rEUO1-0006Sn-Mr; Sat, 16 Dec 2023 08:07:21 -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=3YxyFtgULn7K95Bn7ZHA+DLW7H3GxCEt61o+xtOllk0=; b=NnTioFQBrDW6 NEsVgpeSytqkpMgYaTMqePcqITauvsJTDSAloyUiY7Zjs5rTmcaTmk5JbwwXkK2hAM7QpwDZ08RCo Ya+CGvzwLGif84XEHaO8kBtpIvjq6FzGJZNf/dH3ROcOcGElmk2TX95IXNJtjm/oSxG8zTecNLmJM j4u4D24r1XljDeC5c0S0k/Z1G5c7ADZ8ntDyyRI2UNsjYvIJUvRS8Sztm1ZOUxVEQLXS0SKyViI4W lDjM0XFCTMU0HTabaTngYOsqLfxRrwfziUx0TLAbBem92K7rcWEVDoTZhKRFhefKuzaTecAxBzrco ndEgWO9KKEd9qc+zDw5Y2A==; In-Reply-To: <265053b2-417f-4feb-84ec-8e56886febac@vodafonemail.de> (message from Jens Schmidt on Thu, 14 Dec 2023 22:21:24 +0100) 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:313870 Archived-At: > Date: Thu, 14 Dec 2023 22:21:24 +0100 > Cc: emacs-devel@gnu.org, monnier@iro.umontreal.ca > From: Jens Schmidt > > On 2023-12-14 21:27, Eli Zaretskii wrote: > >> Date: Thu, 14 Dec 2023 21:03:02 +0100 > >> Cc: emacs-devel@gnu.org, monnier@iro.umontreal.ca > >> From: Jens Schmidt > >> > >> I understood from your previous email [1] that the current location of > >> where "rmc" is loaded in loadup.el is not optimal. > > > > Not "not optimal", incorrect. It should be before leim-list.el. > > > >> How about moving it to the block that also loads "minibuffer"? > > > > Why risk issues that could cause? I'd leave it the last loaded > > package. We don't have any real reason to move it higher up, do we? > > I thought it'd feel lonely there. On a more serious note, there are > more files that seem to race for the last places ("cus-start", for > example), and I thought it would be helpful to have one candidate > less wanting for a special position. > > Anyway, if it should be before leim-list.el, attached is it. Thanks, installed on the master branch.