From e9d0b3f2ae8eb12c36bdce57184bef25143ff1ff Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 15 Sep 2015 17:22:46 +0800 Subject: [PATCH] JSDOC/TextStream.vala --- JSDOC/TextStream.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JSDOC/TextStream.vala b/JSDOC/TextStream.vala index 229b2ca..153495f 100644 --- a/JSDOC/TextStream.vala +++ b/JSDOC/TextStream.vala @@ -57,7 +57,7 @@ namespace JSDOC { char pulled; for (var i = 0; i < n; i++) { if (this.cursor+i < this.text.length) { - pulled += this.text.charAt(this.cursor+i); + pulled += this.text.get_char(this.cursor+i); } else { eof =true; return '\0'; -- 2.39.2