expairseq::match(): remove the code which works around basic::match bug.
basic::match() used to have side effects in a case of a failed match. As
a result of that bug exparsed::match did not work correctly in some cases,
see [1] for more details. These false negatives were worked around by [2].
Now that match() has no unwanted side effects [3] we don't need any work
arounds any more.
Just in a case add a regression test (from [1]).
[1] http://www.ginac.de/pipermail/ginac-devel/2006-April/000942.html
[2] Commit
73f0ce4cf8d91f073f35a45443f5fbe886921c5c ("Fixed bugs in ::match").
[3] Commit
192ed7390b7b2b705ad100e3db0a92eedd2b20ad ("match: don't modify
subexpression list if expression doesn't match the pattern.").