From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonas Bernoulli Subject: Two ox-texinfo regressions Date: Tue, 25 Jul 2017 18:57:59 +0200 Message-ID: <87a83sxxm0.fsf@bernoul.li> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44790) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1da39z-0005BH-2X for emacs-orgmode@gnu.org; Tue, 25 Jul 2017 12:58:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1da39u-0008Au-31 for emacs-orgmode@gnu.org; Tue, 25 Jul 2017 12:58:15 -0400 Received: from mail.hostpark.net ([212.243.197.30]:34918) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1da39t-00089i-Rf for emacs-orgmode@gnu.org; Tue, 25 Jul 2017 12:58:09 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.hostpark.net (Postfix) with ESMTP id 08C0D16735 for ; Tue, 25 Jul 2017 18:58:06 +0200 (CEST) Received: from mail.hostpark.net ([127.0.0.1]) by localhost (mail0.hostpark.net [127.0.0.1]) (amavisd-new, port 10124) with ESMTP id abzzHDIxPOrk for ; Tue, 25 Jul 2017 18:58:05 +0200 (CEST) Received: from desktop (77-58-214-193.dclient.hispeed.ch [77.58.214.193]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.hostpark.net (Postfix) with ESMTPSA id 83BAC1672C for ; Tue, 25 Jul 2017 18:58:04 +0200 (CEST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-org list Hello, 1) Starting with "1b415735e ox-texinfo: Small menu refactoring" a menu contains not only entries for subnodes but recursively for all subsub...nodes. That's because `org-element-map' is no longer called with `headline' as NO-RECURSION. You can use this trivial source to veryify this: .--- |* a |** b |*** c `--- This can be fixed by reverting that commit. 2) There no longer is an empty line between headings and content in texi files. I am not sure what commit introduced that regression. You can use this trivial source to veryify this: .--- |* title | |content `--- This can be fixed by changing the last line of `org-texinfo-headline': .--- |- contents))))))) |+ "\n" contents))))))) `--- Best regards, Jonas