>>>>> "Derek" == Derek R Price <[EMAIL PROTECTED]> writes:

Derek> Akim Demaille wrote:
>> >>>>> "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes:
>> 
>> >>>>> "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes:
Akim> elsif (/^\@(syncode|print)index \w+ (\w*)/) { push
Akim> @clean_suffixes, "$1s";
>>
Tom> Shouldn't that be "$2s" here?
>> Yes, definitely.  Thanks!

Derek> Neither one worked.  I grepped for "@(syncode|print)index" in
Derek> CVS's texinfo source and got the following:

Derek>     @printindex cp

Derek> Are the two \w segments above a typo or maybe just not the
Derek> general case?

Arg, sorry, I wrote this way too hastily.   Try this:

      elsif (/^\@syncodeindex \w+ (\w*)/
            || /^\@printindex (\w+)/)
      {
        push @clean_suffixes, "$1s";
      }

IIRC, you also had problems with fns.  What does a `grep fn *texi*' gives?

Reply via email to