mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9 lines
151 B
Ruby
9 lines
151 B
Ruby
|
module IRB
|
||
|
class Locale
|
||
|
@@legacy_encoding_alias_map = {
|
||
|
'ujis' => Encoding::EUC_JP,
|
||
|
'euc' => Encoding::EUC_JP
|
||
|
}.freeze
|
||
|
end
|
||
|
end
|