Re: Substitute bug

2009-03-31 Thread Eric Covener
On Tue, Mar 31, 2009 at 7:59 AM, Nick Gearls nickgea...@gmail.com wrote: In a page containing only abcdef (inside the body), and the following directives,   Substitute  s~(abc.*)$~$1~q   Substitute  s~def~XXX~ the second directive should be ignored, because of the q flag on the first one.

Re: Substitute bug

2009-03-31 Thread Plüm, Rüdiger, VF-Group
] Gesendet: Dienstag, 31. März 2009 14:00 An: Development Apache Betreff: Substitute bug In a page containing only abcdef (inside the body), and the following directives, Substitute s~(abc.*)$~$1~q Substitute s~def~XXX~ the second directive should be ignored, because of the q flag

Substitute bug

2009-03-31 Thread Nick Gearls
In a page containing only abcdef (inside the body), and the following directives, Substitute s~(abc.*)$~$1~q Substitute s~def~XXX~ the second directive should be ignored, because of the q flag on the first one. The result should be abcdef. However, the result is abcXXX. Did I miss