Hi texinfo maintainers! Today I tried to update texinfo from 6.7 to 6.8 and noticed that gmp's info files fail to build against it:
$ git clone https://github.com/telmich/gpm.git $ ./configure && make ... make[1]: Entering directory '/home/slyfox/dev/git/gpm/doc' /nix/store/y6jpaid2aykxb5gc97krmsd4xmj9gakd-gnused-4.8/bin/sed -f /home/slyfox/dev/git/gpm/doc/infofilter /home/slyfox/dev/git/gpm/doc/doc.gpm > /home/slyfox/dev/git/gpm/doc/gpm.texinfo chmod 400 /home/slyfox/dev/git/gpm/doc/gpm.texinfo if [ "/nix/store/q8v7wwh4v3skkg6jwz0xhwqssklzkncz-texinfo-6.8/bin/makeinfo" != "no" ]; then /nix/store/q8v7wwh4v3skkg6jwz0xhwqssklzkncz-texinfo-6.8/bin/makeinfo --no-split /home/slyfox/dev/git/gpm/doc/ gpm.texinfo -o /home/slyfox/dev/git/gpm/doc/gpm.info; fi gpm.texinfo:32: warning: undefined flag: version gpm.texinfo:84: warning: multiple @setchapternewpage gpm.texinfo:89: warning: @subtitle missing argument gpm.texinfo:95: bad argument to @headings: single The doc template is at https://github.com/telmich/gpm/blob/master/doc/doc.gpm.in#L94: ... @end titlepage @setchapternewpage off @headings single ... The error message is a bit confusing. Is it a texinfo's regression? or @headings is used in wrong context? Thank you! -- Sergei