Commit 554c259e authored by twanvl's avatar twanvl

Fixed: < was matched by spec_sort "<xyz>"

parent 95c154d6
......@@ -489,7 +489,7 @@ String spec_sort(const String& spec, const String& input) {
Char c = spec.GetChar(pos);
if (c == _('<')) { // keep only a single copy
for ( ; pos < spec.size() ; ++pos) {
for ( ++pos ; pos < spec.size() ; ++pos) {
Char c = spec.GetChar(pos);
if (c == _('>')) break;
if (input.find_first_of(c) != String::npos) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment