> From: Frank Heckenbach <[EMAIL PROTECTED]>
> 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--;



_______________________________________________
Bug-texinfo mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-texinfo

Reply via email to