- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/io/StreamTokenizer.java (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/io/StreamTokenizer.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 1 /* StreamTokenizer.java -- parses streams of characters into tokens 2 Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation2 Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation 3 3 4 4 This file is part of GNU Classpath. … … 555 555 556 556 /** 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. 562 561 */ 563 562 public void pushBack() 564 563 { 565 // pushBack may cause the lineno method to return an incorrect value566 // if lineno is called before the next call to nextToken.567 564 pushedBack = true; 568 565 } … … 671 668 hi = 255; 672 669 for (int i = low; i <= hi; i++) 673 whitespace[i] = true; 670 { 671 resetChar(i); 672 whitespace[i] = true; 673 } 674 674 } 675 675 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
