On Tue, Mar 26, 2013 at 4:10 AM, Maksim Kuznetsov
<[email protected]> wrote:
>> Thanks for the explanation, now I understand it. I fixed the patch
>> according to your remarks. I removed %| support since we don't
>> actually need it in i386 right now, it was added for the purpose of
>> possible generalization.
>>
>> Updated patch is attached.
>
> Ping
>
For '}' case, can you simply just add
/* Skip over any character after a percent sign. */
if (*p == '%' && *(p + 1))
{
p += 2;
continue;
}
without changing the do-while loop to the while loop?
--
H.J.