URI.st
changeset 1415 3ef6a2c42611
parent 1310 948ed141b0b7
child 1518 2e021f09320f
--- a/URI.st	Wed Mar 03 21:49:26 2004 +0100
+++ b/URI.st	Fri Mar 05 20:02:42 2004 +0100
@@ -131,7 +131,7 @@
         ) ifTrue:[
             aStream nextPut:c
         ] ifFalse:[
-            val := c asciiValue.            
+            val := c codePoint.            
             aStream nextPut:$%; 
                     nextPut:(Character digitValue:val//16);
                     nextPut:(Character digitValue:val\\16).
@@ -294,5 +294,5 @@
 !URI class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/URI.st,v 1.10 2003-08-29 19:33:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/URI.st,v 1.11 2004-03-05 19:02:22 stefan Exp $'
 ! !