x expeccoALM_1_13
authorcg
Mon, 22 Oct 2018 16:37:14 +0200
changeset 1340 3fe707e49d24
parent 1339 9ddefd2c333f
child 1341 4e3ba5574f0b
x
extensions.st
--- a/extensions.st	Mon Oct 22 10:30:54 2018 +0200
+++ b/extensions.st	Mon Oct 22 16:37:14 2018 +0200
@@ -111,11 +111,12 @@
     "whether a character is 'safe', or needs to be escaped when used, eg, in a URL"
     "[GG]  See http://www.faqs.org/rfcs/rfc1738.html. ~ is unsafe and has been removed"
 
-    ^ self charCode < 128
+    ^ asciivalue < 128
         and: [self isLetterOrDigit
               or: ['.-_' includes: self]]
 
     "Created: / 01-07-2018 / 00:53:05 / Claus Gittinger"
+    "Modified: / 22-10-2018 / 16:37:01 / Claus Gittinger"
 ! !
 
 !CharacterArray methodsFor:'Compatibility-VW'!