[tex-live] Extended page grouping patch makeindex in texlive 2011?

Peter Breitenlohner peb at mppmu.mpg.de
Thu Jul 28 10:45:01 CEST 2011


On Wed, 27 Jul 2011, Pander wrote:

> Here is a newer patch against TeX Live 2011.

looking at this patch I noticed:

(1) the changes for makeindex.1 mentioned in ChangeLog are missing

(2) the patch for mkind.h is reversed.  Moreover
   "Usage: %s [-ilqrcgBES] ..."
indicates three options `-B', `-E', and `-S' without params. That ought to
be something like
   "Usage: %s [-ilqrcg] [-B bgr] [-E egr] [-S sgr] ..."

(3) mkind.c
   if ((bgr != -1 || egr != -1) && egr < bgr)
is equivalent to
   if (egr < bgr)

However, I'd suggest
   if (egr != -1 && egr < bgr)
with
   bgr > -1 and egr == -1
interpreted as egr == infinity

(4) would it be useful to require that (egr-bgr) is a multiple of sgr?

Regards
Peter Breitenlohner <peb at mppmu.mpg.de>


More information about the tex-live mailing list