corrected the reporting+alignment of error locations
[sbp.git] / src / edu / berkeley / sbp / chr / CharInput.java
index 530f25c..1a08f22 100644 (file)
@@ -20,7 +20,7 @@ public class CharInput extends Cartesian.Input<Character> {
     boolean cr = false;
     private int count = 0;
     public boolean   isCR() { return cr; }
-    public Character next() throws IOException {
+    public Character _next() throws IOException {
         cr = false;
         int i = r.read();
         if (i==-1) { System.err.print("\r...done       \r"); return null; }