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 47e313e9805: Unbind 'C-M-i' in Text mode Date: Thu, 30 Nov 2023 10:41:01 +0200 Message-ID: <83wmtzbplu.fsf@gnu.org> References: <170099515102.15929.4538081255360222923@vcs2.savannah.gnu.org> <20231126103911.6CEAFC25D5B@vcs2.savannah.gnu.org> <83sf4n6ag6.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="15305"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org, me@eshelyaron.com To: Arash Esbati Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Nov 30 09:42:14 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 1r8cce-0003mA-Vz for ged-emacs-devel@m.gmane-mx.org; Thu, 30 Nov 2023 09:42:13 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1r8ccA-0002nA-TL; Thu, 30 Nov 2023 03:41:42 -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 1r8cc4-0002kY-Cj for emacs-devel@gnu.org; Thu, 30 Nov 2023 03:41:37 -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 1r8cc1-0001GS-NE; Thu, 30 Nov 2023 03:41:35 -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=1uA6itb916ZMyuq2UYaDbBw9ocvv4ncIUAGUBql1Fds=; b=WqUKWxvwFlT8 Gp49KHUk1+nzK51kO5KaDSWDV4Nwaum/7Jfl705w+IhC6/XsQ+UovVCtxQc7JOGXtGk6pjqBIq7ki X9pxL1UTF8mwySRYma7RFbNFvXUqoIcuWjKLJk0MnV3L/rP92C0089KOSL2KLj4LKYJCIYL0LRyq2 5XVfDxjFs+rohNYwlIUhmh2Zn+uDL1aOCCqo/naS4MydmIkQZoLsbFEAGHk9K84dY9+5n1ijyiydD R81rYwDluoAgfS0PgZr8YhQTEemO7uVrgocnNin6qhVDgTgUDljU5DympyN7kNcJE17vwpOvpPu5L HhZcbrmQLe226jgsAX99UQ==; In-Reply-To: (message from Arash Esbati on Thu, 30 Nov 2023 08:40:15 +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:313388 Archived-At: > From: Arash Esbati > Cc: emacs-devel@gnu.org, me@eshelyaron.com > Date: Thu, 30 Nov 2023 08:40:15 +0100 > > Eli Zaretskii writes: > > > It's a bogus warning, it happens because you build Emacs > > incrementally, starting from the previous build. > > Actually, I use a small script which does: > > git clean -fdx --exclude=ChangeLog > ./autogen.sh > ./configure ... > make > > So I don't build incrementally. And I thought the method above is > (almost?) equivalent to "make bootstrap" > > > To make sure, say > > > > touch lisp/textmodes/text-mode.el > > > > and then say "make" again -- this time there will be no warning. > > True, that works. > > > AFAICT, the problem is that the first time loaddefs.el still isn't > > updated, or something like that. > > > > Such temporary warnings appear very frequently when Emacs is built > > after an update (as opposed to a "make bootstrap"). > > I get the warnings (see other message) also with "make bootstrap". If so, then a declare-function might indeed be necessary.