From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7099 invoked from network); 25 Dec 2007 16:30:35 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.3 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 25 Dec 2007 16:30:35 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 99746 invoked from network); 25 Dec 2007 16:30:27 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 25 Dec 2007 16:30:27 -0000 Received: (qmail 3910 invoked by alias); 25 Dec 2007 16:30:20 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 24318 Received: (qmail 3879 invoked from network); 25 Dec 2007 16:30:18 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 25 Dec 2007 16:30:18 -0000 Received: from virusfilter.dotsrc.org (bifrost [127.0.0.1]) by spamfilter.dotsrc.org (Postfix) with ESMTP id 4A2878058F9A for ; Tue, 25 Dec 2007 17:26:36 +0100 (CET) Received: from acolyte.scowler.net (acolyte.scowler.net [216.254.112.45]) by bifrost.dotsrc.org (Postfix) with ESMTP for ; Tue, 25 Dec 2007 17:26:36 +0100 (CET) Received: by acolyte.scowler.net (Postfix, from userid 1000) id 279075CF91; Tue, 25 Dec 2007 11:30:14 -0500 (EST) Date: Tue, 25 Dec 2007 11:30:14 -0500 From: Clint Adams To: Norbert Preining , 457741@bugs.debian.org Cc: Karl Berry , Sven Joachim , 451268@bugs.debian.org, bug-texinfo@gnu.org, debian-tex-maint@lists.debian.org, zsh-workers@sunsite.dk Subject: Re: Bug#457741: wrong direntries from makeinfo 4.11 Message-ID: <20071225163014.GA28094@scowler.net> Mail-Followup-To: Norbert Preining , 457741@bugs.debian.org, Karl Berry , Sven Joachim , 451268@bugs.debian.org, bug-texinfo@gnu.org, debian-tex-maint@lists.debian.org, zsh-workers@sunsite.dk References: <87fxxrjd3n.fsf@gmx.de> <20071219153013.GE7485@gamma.logic.tuwien.ac.at> <20071225111748.GA31978@gamma.logic.tuwien.ac.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20071225111748.GA31978@gamma.logic.tuwien.ac.at> User-Agent: Mutt/1.5.17 (2007-11-01) X-Virus-Scanned: ClamAV using ClamSMTP On Tue, Dec 25, 2007 at 12:17:48PM +0100, Norbert Preining wrote: > Not working version, created with makeinfo including the fix from above: > > > This is the header of /usr/share/info/zsh.info.gz: > > > > ,---- > > | This is zsh.info, produced by makeinfo version 4.11 from tzsh.texi. > > | > > | INFO-DIR-SECTION Utilities > > | START-INFO-DIR-ENTRY > > | * ZSH: (zsh). The Z Shell Manual. > > | END-INFO-DIR-ENTRY > > `---- > > Working entry created with the old version of makeinfo 4.11 without the > fix: > > > > And here is the header of /usr/share/info/zsh.info.gz in the working > > 4.3.4-dev-6-1 version: > > > > ,---- > > | This is zsh.info, produced by makeinfo version 4.11 from tzsh.texi. > > | > > | INFO-DIR-SECTION Utilities > > | START-INFO-DIR-ENTRY > > | * ZSH: (zsh). The Z Shell Manual. > > | END-INFO-DIR-ENTRY > > `---- > > I cannot check now for the format of these START-INFO-DIR-ENTRY but > could it be that the additional spaces at the beginning are wrong? Can you explain what's incorrect about the leading spaces? --- orig/Doc/ztexi.yo +++ mod/Doc/ztexi.yo @@ -71,7 +71,7 @@ NOTRANS(@ifinfo)+NL()\ NOTRANS(@dircategory Utilities)+NL()\ NOTRANS(@direntry)+NL()\ - NOTRANS( * ZSH: (zsh). The Z Shell Manual.)+NL()\ + NOTRANS(* ZSH: (zsh). The Z Shell Manual.)+NL()\ NOTRANS(@end direntry)+NL()\ NOTRANS(@end ifinfo)+NL()\ ) > Strange enough I cannot see anything in the above fix which might cause > this problem. Do you have any idea?