Fix the behavior of intermixed tests end edits in match
authorAkira TAGOH <akira@tagoh.org>
Fri, 28 Jun 2013 06:54:38 +0000 (15:54 +0900)
committerAkira TAGOH <akira@tagoh.org>
Fri, 28 Jun 2013 06:54:38 +0000 (15:54 +0900)
commit0907589a79d05aeed9bc6bff783838b0eb25736b
tree3ca59f8ee40a19795a469b58dfc7d1c6aa44a738
parent197d06c49b01413303f2c92130594daa4fcaa6ad
Fix the behavior of intermixed tests end edits in match

to get the following recipe working:

<match>
  <test1 .../>
  <edit1 .../>
  <test2 .../>
  <edit2 .../>
</match>

as:

<match>
  <test1 .../>
  </edit1 .../>
</match>
<match>
  <test1 .../>
  <test2 .../>
  <edit2 .../>
</match>
src/fccfg.c
src/fcint.h
src/fcxml.c