[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Suprious error `ignoring stray text' with makeinfo 4.0 on Solaris
From: |
Eli Zaretskii |
Subject: |
Re: Suprious error `ignoring stray text' with makeinfo 4.0 on Solaris |
Date: |
Wed, 09 Jan 2002 18:43:17 +0200 |
> From: Frank Heckenbach <address@hidden>
> Date: Wed, 9 Jan 2002 15:39:30 +0100
>
> Copyright (C) 1999 Free Software Foundation, Inc.
> There is NO warranty. You may redistribute this software
> under the terms of the GNU General Public License.
> For more information about these matters, see the files named COPYING.
> ../bpqstart.texi:1161: warning: ignoring stray text `xxxxxxxxxxxxxxxxx}
> {xxxxxxxxxxxxxxxx} {xxxxxxxxxx} {xxxxxxx}' after @multitable.
> ../bpqstart.texi:1162: Too many columns in multitable item (max 1).
Does the patch below fix this? (This is already fixed in the latest
pretest version 4.0d of Texinfo, so you could just try that version
instead.)
*** texinfo-4.0/makeinfo/multi.c.orig Tue Aug 17 23:06:56 1999
--- texinfo-4.0/makeinfo/multi.c Mon Sep 17 10:26:24 2001
***************
*** 199,205 ****
do
{
! if (**params == '{' && (*params)[-1] != '@')
brace_level++;
else if (**params == '}' && (*params)[-1] != '@')
brace_level--;
--- 199,205 ----
do
{
! if (**params == '{' && ((*params == start) || ((*params)[-1] != '@')))
brace_level++;
else if (**params == '}' && (*params)[-1] != '@')
brace_level--;