X Tutup
Skip to content

Commit 9c32aba

Browse files
author
Johan Brichau
authored
Merge pull request SeasideSt#115 from SeasideSt/pharo9-utf8encoding2
Pharo9 utf8 encoding changes
2 parents 25c6d55 + c88f3d2 commit 9c32aba

File tree

90 files changed

+545
-489
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+545
-489
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2-
"noMethodMetaData" : true,
32
"separateMethodMetaAndSource" : false,
4-
"useCypressPropertiesFile" : true }
3+
"noMethodMetaData" : true,
4+
"useCypressPropertiesFile" : true
5+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
{
2-
"name" : "Character" }
2+
"name" : "Character"
3+
}
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
2-
"category" : "Grease-Core-Utilities",
3-
"classinstvars" : [
4-
],
5-
"classvars" : [
6-
],
72
"commentStamp" : "jf 3/14/2009 11:04",
3+
"super" : "GRDelayedSendMessage",
4+
"category" : "Grease-Core-Utilities",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
88
"instvars" : [
9-
"arguments" ],
9+
"arguments"
10+
],
1011
"name" : "GRBoundMessage",
11-
"pools" : [
12-
],
13-
"super" : "GRDelayedSendMessage",
14-
"type" : "normal" }
12+
"type" : "normal"
13+
}

repository/Grease-Core.package/GRCodec.class/instance/encode..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ convenience
22
encode: aString
33
| writeStream |
44
writeStream := self encoderFor: (GRPlatform current
5-
writeCharacterStreamOn: (String new: aString size)).
5+
writeCharacterStreamOn: (self encodedStringClass new: aString size)).
66
writeStream nextPutAll: aString.
77
^ writeStream contents
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
conversion
2+
encodedStringClass
3+
^ String
Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
{
2-
"category" : "Grease-Core-Text",
3-
"classinstvars" : [
4-
],
5-
"classvars" : [
6-
],
72
"commentStamp" : "lr 2/7/2009 09:55",
8-
"instvars" : [
9-
],
10-
"name" : "GRCodec",
11-
"pools" : [
12-
],
133
"super" : "GRObject",
14-
"type" : "normal" }
4+
"category" : "Grease-Core-Text",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
8+
"instvars" : [ ],
9+
"name" : "GRCodec",
10+
"type" : "normal"
11+
}
Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
{
2-
"category" : "Grease-Core-Text",
3-
"classinstvars" : [
4-
],
5-
"classvars" : [
6-
],
72
"commentStamp" : "pmm 6/25/2012 20:21",
8-
"instvars" : [
9-
],
10-
"name" : "GRCodecStream",
11-
"pools" : [
12-
],
133
"super" : "GRDelegatingStream",
14-
"type" : "normal" }
4+
"category" : "Grease-Core-Text",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
8+
"instvars" : [ ],
9+
"name" : "GRCodecStream",
10+
"type" : "normal"
11+
}
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
2-
"category" : "Grease-Core",
3-
"classinstvars" : [
4-
],
5-
"classvars" : [
6-
],
72
"commentStamp" : "pmm 6/25/2012 20:39",
3+
"super" : "GRDelegatingStream",
4+
"category" : "Grease-Core",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
88
"instvars" : [
9-
"count" ],
9+
"count"
10+
],
1011
"name" : "GRCountingStream",
11-
"pools" : [
12-
],
13-
"super" : "GRDelegatingStream",
14-
"type" : "normal" }
12+
"type" : "normal"
13+
}
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
2-
"category" : "Grease-Core-Utilities",
3-
"classinstvars" : [
4-
],
5-
"classvars" : [
6-
],
72
"commentStamp" : "NickAger 3/20/2012 09:04",
3+
"super" : "GRObject",
4+
"category" : "Grease-Core-Utilities",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
88
"instvars" : [
99
"receiver",
10-
"message" ],
10+
"message"
11+
],
1112
"name" : "GRDelayedSend",
12-
"pools" : [
13-
],
14-
"super" : "GRObject",
15-
"type" : "normal" }
13+
"type" : "normal"
14+
}
Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
2-
"category" : "Grease-Core-Utilities",
3-
"classinstvars" : [
4-
],
5-
"classvars" : [
6-
],
72
"commentStamp" : "NickAger 3/19/2012 11:20",
3+
"super" : "GRObject",
4+
"category" : "Grease-Core-Utilities",
5+
"classinstvars" : [ ],
6+
"pools" : [ ],
7+
"classvars" : [ ],
88
"instvars" : [
9-
"selector" ],
9+
"selector"
10+
],
1011
"name" : "GRDelayedSendMessage",
11-
"pools" : [
12-
],
13-
"super" : "GRObject",
14-
"type" : "normal" }
12+
"type" : "normal"
13+
}

0 commit comments

Comments
 (0)
X Tutup