JSDOC/TextStream.vala
[gnome.introspection-doc-generator] / JSDOC / TextStream.vala
index 9182c28..7ebda98 100644 (file)
@@ -49,9 +49,9 @@ namespace JSDOC {
         },
         
     
-        public char next(int n = 1,  out bool eof)
+        public char next(int n = 1)
         {
-            eof = false;
+            
             if (n < 1) { //?? eof???
                 return '\0';
             }
@@ -61,9 +61,9 @@ namespace JSDOC {
             while (i < n) {
                 if (this.cursor+i < this.length) {
                     pulled += this.text.get_char(this.cursor+i);
-                    i+=pulled.to_string.length();
+                    i += pulled.to_string.length();
                 } else {
-                    eof =true;
+                     
                     return '\0';