ParserFlags.st
changeset 4346 1023a1792e57
parent 4339 525b013ad75c
child 4406 03f5935bf045
--- a/ParserFlags.st	Mon Feb 11 12:29:51 2019 +0100
+++ b/ParserFlags.st	Mon Feb 11 17:48:35 2019 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
  COPYRIGHT (c) 2005 by eXept Software AG
@@ -1059,7 +1057,7 @@
 !
 
 allowParagraphInIdentifier
-    "return true, if §-characters are allowed in identifiers (treated as letter)"
+    "return true, if §-characters are allowed in identifiers (treated as letter)"
 
     ^ AllowParagraphInIdentifier
 
@@ -1067,7 +1065,7 @@
 !
 
 allowParagraphInIdentifier:aBoolean
-    "this allows turning on/off §-characters in identifiers."
+    "this allows turning on/off §-characters in identifiers."
 
     AllowParagraphInIdentifier := aBoolean.
 
@@ -1634,7 +1632,7 @@
 !
 
 warnParagraphInIdentifier
-    "return true, if §-characters in identifiers are to be warned about"
+    "return true, if §-characters in identifiers are to be warned about"
 
     ^ Warnings and:[WarnParagraphInIdentifier]
 
@@ -1642,7 +1640,7 @@
 !
 
 warnParagraphInIdentifier:aBoolean
-    "this allows turning on/off warnings about §-characters in identifiers.
+    "this allows turning on/off warnings about §-characters in identifiers.
      You may find those warnings useful, to make certain that your code
      is portable to other Smalltalk versions, which do not allow this"
 
@@ -1834,7 +1832,7 @@
     AllowPeriodInSymbol := false.
     AllowPeriodAsNameSpaceSeparator := false.
     "/ these are only used by the new compiler
-    AllowCStrings := false.                     "/ c'...' syntax
+    AllowCStrings := true.                     "/ c'...' syntax
     AllowUnicodeStrings := false.
     AllowUnicodeCharacters := false.
     AllowCharacterEscapes := false.
@@ -1925,7 +1923,7 @@
     "Modified: / 09-08-2006 / 18:47:18 / fm"
     "Modified: / 08-08-2017 / 23:49:41 / cg"
     "Modified (comment): / 11-05-2018 / 10:12:29 / stefan"
-    "Modified (comment): / 08-02-2019 / 18:41:52 / Claus Gittinger"
+    "Modified: / 11-02-2019 / 17:48:20 / Claus Gittinger"
 !
 
 initializeSTCFlagsForTopDirectory:topDirArg