ResourcePack.st
changeset 6113 798f118104a7
parent 6051 f01078ce8c2c
child 6174 982b8576dfbe
--- a/ResourcePack.st	Tue Jul 30 19:33:22 2013 +0200
+++ b/ResourcePack.st	Sat Aug 10 13:24:20 2013 +0200
@@ -539,7 +539,7 @@
     hasError := false.
 
     lineStream skipSeparators.
-    idx := lineStream position1Based + 1.
+    idx := lineStream position + 1 + 1.
 
     lineStream peek == $< ifTrue:[
         "
@@ -547,7 +547,7 @@
         "
         lineStream skipThrough:$>.
         lineStream skipSeparators.
-        idx := lineStream position1Based + 1.
+        idx := lineStream position + 2.
     ].
 
     conditional := indirect := false.
@@ -1421,11 +1421,11 @@
 !ResourcePack class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/ResourcePack.st,v 1.152 2013-04-25 13:12:19 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/ResourcePack.st,v 1.153 2013-08-10 11:24:20 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/ResourcePack.st,v 1.152 2013-04-25 13:12:19 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/ResourcePack.st,v 1.153 2013-08-10 11:24:20 stefan Exp $'
 ! !