From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.devel Subject: Re: master 47e313e9805: Unbind 'C-M-i' in Text mode Date: Thu, 30 Nov 2023 08:40:15 +0100 Message-ID: References: <170099515102.15929.4538081255360222923@vcs2.savannah.gnu.org> <20231126103911.6CEAFC25D5B@vcs2.savannah.gnu.org> <83sf4n6ag6.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="18865"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: emacs-devel@gnu.org, me@eshelyaron.com To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Nov 30 08:40:57 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 1r8bfN-0004hP-Fx for ged-emacs-devel@m.gmane-mx.org; Thu, 30 Nov 2023 08:40:57 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1r8beo-0007uY-0E; Thu, 30 Nov 2023 02:40:22 -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 1r8bem-0007uL-LC for emacs-devel@gnu.org; Thu, 30 Nov 2023 02:40:20 -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 1r8bem-00069y-7M; Thu, 30 Nov 2023 02:40:20 -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=avefLXutLIWWL3jUFKfvNPFg4RwYFy3nR1vz83I2g0o=; b=IK27JQKX+a6To3A+pDIE ASKllOUHhqiSEe2HCBkJpdutn0Gdxl4Gph7luM1tcNuPFZtC5NptW78UjeDfGZHznZFloTokK+XLG bw6Gvs6CXUINr0RcLT2L/TBtkBMIIYTq0xUzkiT7OiLG7Kvp3JM2kvRbwRmZI2c9QoxonejphmqZp WFoZwzuSkXtpRC7oeHRebMc++LklR0qdiZIyPBRr9rdbpWEBuLuRXB9hfg0jVaKKhlGfUxvP+DmPY mxQ7/lqvFrPhh6/YmyO+h0v43vRu/hG08d2/onP8t9jmapHEUdJ5Js/gPnGGni1EGOxYI0ldv03gB hAv58kHH/vQfNA==; In-Reply-To: <83sf4n6ag6.fsf@gnu.org> (Eli Zaretskii's message of "Thu, 30 Nov 2023 08:07:21 +0200") 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:313387 Archived-At: 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". Best, Arash