X Tutup
Skip to content

Commit 607d7ae

Browse files
committed
Fix macroman encoding lookup in Grease-Squeak5-Core and Grease-Squeak6-Core
1 parent d61eb7c commit 607d7ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/class/supportedEncodingNames.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ private
22
supportedEncodingNames
33
"answers the names of the encodings supported by this class"
44

5-
^ TextConverter allEncodingNames
5+
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection
66
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
77
removeAllFoundIn: UTF8TextConverter encodingNames;
88
yourself

repository/Grease-Squeak6-Core.package/GRPharoGenericCodec.class/class/supportedEncodingNames.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ private
22
supportedEncodingNames
33
"answers the names of the encodings supported by this class"
44

5-
^ TextConverter allEncodingNames
5+
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection
66
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
77
removeAllFoundIn: UTF8TextConverter encodingNames;
88
yourself

0 commit comments

Comments
 (0)
X Tutup