automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Default postscript cleans miss *.cps & *.fns.


From: Akim Demaille
Subject: Re: Default postscript cleans miss *.cps & *.fns.
Date: 11 Apr 2001 17:04:22 +0200
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley)

>>>>> "Derek" == Derek R Price <address@hidden> writes:

Derek> Akim Demaille wrote:
>> >>>>> "Tom" == Tom Tromey <address@hidden> writes:
>> 
>> >>>>> "Akim" == Akim Demaille <address@hidden> 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 (/address@hidden \w+ (\w*)/
            || /address@hidden (\w+)/)
      {
        push @clean_suffixes, "$1s";
      }

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]