Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
authorPatrik Svestka <patrik.svestka@gmail.com>
Wed, 14 Nov 2018 12:52:58 +0100
changeset 27 8215eadbe42b
parent 26 1a7e68ad4e0c
child 28 6655e15a12d7
Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present - All source *.st files are now Unicode UTF8 without BOM Files are in two groups (fileOut works this way in Smalltalk/X): - containing a unicode character have "{ Encoding: utf8 }" at the header - ASCII only are without the header
CypressJSONReader.st
--- a/CypressJSONReader.st	Mon Jul 02 08:46:02 2018 +0200
+++ b/CypressJSONReader.st	Wed Nov 14 12:52:58 2018 +0100
@@ -7,7 +7,15 @@
 	category:'Cypress-New-Reader & Writer'
 !
 
-CypressJSONReader comment:'Main comment stating the purpose of this class and relevant relationship to other classes.

Possible useful expressions for doIt or printIt.

Structure:
 instVar1		type -- comment about the purpose of instVar1
 instVar2		type -- comment about the purpose of instVar2

Any further useful comments about the general approach of this implementation.'
+CypressJSONReader comment:'Main comment stating the purpose of this class and relevant relationship to other classes.
+
+Possible useful expressions for doIt or printIt.
+
+Structure:
+ instVar1		type -- comment about the purpose of instVar1
+ instVar2		type -- comment about the purpose of instVar2
+
+Any further useful comments about the general approach of this implementation.'
 !