CharacterArray.st
changeset 16863 6235ea959712
parent 16855 c088880a590b
child 16875 32e61bb3a742
--- a/CharacterArray.st	Fri Sep 26 15:52:50 2014 +0200
+++ b/CharacterArray.st	Fri Sep 26 18:17:09 2014 +0200
@@ -5767,7 +5767,7 @@
 !
 
 withCEscapes
-    "return a new string consisting of receivers characters
+    "return a new string consisting of receiver's characters
      with all special and unprintable characters replaced by \X-character escapes.
      (similar to the way C-language literal Strings are represented).
      The resulting string will contain only 7-bit ascii characters.
@@ -5783,6 +5783,7 @@
         \xnn    two digit hex number defining the characters ascii value
         \unnnn  four digit hex number defining the characters ascii value
         \Unnnnnnnn  eight digit hex number defining the characters ascii value
+     This is the opposite of withoutCEscapes.
     "
 
     |anyEscapeNeeded out seq|
@@ -6148,6 +6149,8 @@
      and place a modified string constant into the binary/byte-code.
      Therefore, no runtime penalty will be payed for using these escapes.
      (not in pre 2.11 versions)
+
+     This is the opposite of withCEscapes.
     "
 
     |val     "{ SmallInteger }"
@@ -7001,11 +7004,11 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.541 2014-09-23 20:49:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.542 2014-09-26 16:17:09 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.541 2014-09-23 20:49:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.542 2014-09-26 16:17:09 cg Exp $'
 ! !