Merge pull request #19 from omniavinco/master

Sort the enums in a stable manner
This commit is contained in:
Nigel Stewart 2014-10-24 21:05:45 +10:00
commit 06db711223

View File

@ -156,7 +156,11 @@ sub output_tokens($$)
if (${$tbl}{$b} =~ /_/) {
1
} else {
hex ${$tbl}{$a} <=> hex ${$tbl}{$b}
if (hex ${$tbl}{$a} eq hex ${$tbl}{$b}) {
$a cmp $b
} else {
hex ${$tbl}{$a} <=> hex ${$tbl}{$b}
}
}
}
}