Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/io/StreamTokenizer.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* StreamTokenizer.java -- parses streams of characters into tokens
    2    Copyright (C) 1998, 1999, 2000, 2001  Free Software Foundation
     2   Copyright (C) 1998, 1999, 2000, 2001  Free Software Foundation
    33
    44This file is part of GNU Classpath.
     
    555555
    556556  /**
    557    * This method returns the current line number.  Note that if the
    558    * <code>pushBack()</code> method is called, it has no effect on the
    559    * line number returned by this method.
    560    *
    561    * @return The current line number
     557   * Puts the current token back into the StreamTokenizer so
     558   * <code>nextToken</code> will return the same value on the next call.
     559   * May cause the lineno method to return an incorrect value
     560   * if lineno is called before the next call to nextToken.
    562561   */
    563562  public void pushBack()
    564563  {
    565     // pushBack may cause the lineno method to return an incorrect value
    566     // if lineno is called before the next call to nextToken.
    567564    pushedBack = true;
    568565  }
     
    671668      hi = 255;
    672669    for (int i = low; i <= hi; i++)
    673       whitespace[i] = true;
     670      {
     671        resetChar(i);
     672        whitespace[i] = true;
     673      }
    674674  }
    675675
Note: See TracChangeset for help on using the changeset viewer.