Subject: | Missed Mac Alias x-mac-ce |
x-mac-ce is not uncommon and the line:
define_alias( qr/^(?:x[_-])?mac[_-](.*)$/i => '"mac$1"' );
Maps to macce which doesn't exist. So we need:
define_alias( qr/^macce$/i => '"MacCentralEurRoman"' );
after it. I've tested this to be a working solution. The single line
change didn't seem worth making patch for it, adding to line 212 should
suffice.