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 5a125fb5a97 1/2: Update to Org 9.7.3 Date: Wed, 12 Jun 2024 16:02:57 +0300 Message-ID: <864j9y1fge.fsf@gnu.org> References: <171796793548.23337.12512115872160390161@vcs2.savannah.gnu.org> <20240609211858.A2C31C1F9FB@vcs2.savannah.gnu.org> <87ed927ris.fsf@kyleam.com> <86frti1r1w.fsf@gnu.org> <87tthy71xw.fsf@localhost> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20653"; mail-complaints-to="usenet@ciao.gmane.io" Cc: kyle@kyleam.com, stefankangas@gmail.com, emacs-devel@gnu.org, monnier@iro.umontreal.ca To: Ihor Radchenko Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Jun 12 15:06:26 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 1sHNgE-0004zz-1x for ged-emacs-devel@m.gmane-mx.org; Wed, 12 Jun 2024 15:06:23 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1sHNd0-000623-TP; Wed, 12 Jun 2024 09:03:02 -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 1sHNcz-00061q-ST for emacs-devel@gnu.org; Wed, 12 Jun 2024 09:03:01 -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 1sHNcy-0008Bj-42; Wed, 12 Jun 2024 09:03:00 -0400 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=HSJQlWwUO+fyUDL3FlYt2nSebSoytxBS85H8bPgutTA=; b=T7Hlnvol9+Nl iokddDzEQOA4X2pHbGlBydCtLV0h2ynG3T/OW287TZG6eNUs8C/jppR82u6ktSFXKhLRClyQVZV5u hbARMtfhjm34KwWaKd+hIoN/Q42cDoQlu9tVVbA7JC6vE9gYnCOslQi9ZO/CxY0WCEhXUVsfstF+O 1DyaMWFjMUCgtJCD6XmYWzD+elqjrpC9e51JxT5NFS4yEz7NxE2jvy6aoW0z0mvFVZc/fbWE/p/jR caAiz8QsDSGNZ163bFhQvIPq6Wi1oaZXEYx1UMXEAW5JLsT+k/vbn6+PACUtBiOExzMqtdLoXFQ3w y9zEWlaQT8MQHmDImiftSQ==; In-Reply-To: <87tthy71xw.fsf@localhost> (message from Ihor Radchenko on Wed, 12 Jun 2024 12:58:19 +0000) 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:319993 Archived-At: > From: Ihor Radchenko > Cc: Kyle Meyer , stefankangas@gmail.com, > emacs-devel@gnu.org, monnier@iro.umontreal.ca > Date: Wed, 12 Jun 2024 12:58:19 +0000 > > Eli Zaretskii writes: > > >> > After make bootstrap, I no longer see the Org manual in the info/dir > >> > file. git checkout 5a125fb5a9736bd^ fixes the problem. > >> > >> Thanks for spotting. I don't have time to look at it more closely > >> tonight, but I think build-aux/make-info-dir needs to be adjusted for > >> Org's b0c3c9057 (ox-texinfo:: Always provide a @direntry, 2024-03-08). > > > > Thanks, this was indeed the reason. I hope I fixed that now. > > > > Please in the future take this into consideration when you decide to > > modify the way org.org specifies the various Texinfo constructs, as > > this affects more than just Org itself. > > I was not aware that Emacs uses a custom awk script to parse .org source > in addition to .texi source. > > The existence of such script implies that .texi files generated by Org > are not well-formatted. May you please explain why org.org file needs to > be parsed and why parsing org.texi is not sufficient? I don't think it has anything to do with formatting of org.texi. The issue here is that info/DIR file might be generated when org.texi is not yet available or not yet up-to-date, such as during bootstrap or after some change in org.org. IOW, the reason for this behavior is that we want to produce info/DIR from the source files, not from the generated files.