EncodedStream.st
changeset 22423 ebb20e21f75e
parent 22422 d7595ebb066a
child 22480 15005492d6bd
--- a/EncodedStream.st	Mon Jan 15 22:28:19 2018 +0100
+++ b/EncodedStream.st	Mon Jan 15 22:42:43 2018 +0100
@@ -364,11 +364,11 @@
     pos := stream position.
     peekChar notNil ifTrue:[
         "#position: nils peekChar - make sure, that it positions before peekChar"
-        pos := pos - encoder characterSize:peekChar.
+        pos := pos - (encoder characterSize:peekChar).
     ].
     ^ pos.
 
-    "Modified: / 15-01-2018 / 22:27:36 / stefan"
+    "Modified: / 15-01-2018 / 22:42:01 / stefan"
 !
 
 position0Based