Commit fbaa8863 authored by twanvl's avatar twanvl

Restored "(..)" = "cycle(..)" for spec sort

parent 07869b16
...@@ -242,6 +242,8 @@ String spec_sort(const String& spec, String& input, String& ret) { ...@@ -242,6 +242,8 @@ String spec_sort(const String& spec, String& input, String& ret) {
} else if (it.keyword(_("cycle("))) { } else if (it.keyword(_("cycle("))) {
cycle_sort(it.readParam(_(')')), input, ret); cycle_sort(it.readParam(_(')')), input, ret);
} else if (it.value == _('(')) {
cycle_sort(it.readParam(_(')')), input, ret);
} else if (it.keyword(_("compound("))) { // compound item } else if (it.keyword(_("compound("))) { // compound item
compound_sort(it.readParam(_(')')), input, ret); compound_sort(it.readParam(_(')')), input, ret);
......
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