Skip Menu |

This queue is for tickets about the Encode CPAN distribution.

Report information
The Basics
Id: 78125
Status: resolved
Priority: 0/
Queue: Encode

People
Owner: Nobody in particular
Requestors: COSMICNET [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 2.44
Fixed in: (no value)



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.
Thank you. fixed in my repo. Will show up in 2.45. Dan the Maintainer Thereof On Sun Jul 01 01:19:28 2012, COSMICNET wrote: Show quoted text
> 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. >