mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 20:01:21 +08:00
Properties.java (load): Correctly read \u sequences.
* java/util/Properties.java (load): Correctly read \u sequences. Report from Anthony Green. From-SVN: r45532
This commit is contained in:
parent
fb530c07c1
commit
fe5de1176e
@ -1,3 +1,8 @@
|
||||
2001-09-10 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* java/util/Properties.java (load): Correctly read \u sequences.
|
||||
Report from Anthony Green.
|
||||
|
||||
2001-09-10 Manfred Hollstein <manfredh@redhat.com>
|
||||
|
||||
* configure.in (LIBFFIINCS): Quote uses of $(top_srcdir)
|
||||
|
@ -147,7 +147,7 @@ public class Properties extends Hashtable
|
||||
if (pos == line.length() || c == '#' || c == '!')
|
||||
continue;
|
||||
|
||||
// The characaters up to the next Whitespace, ':', or '='
|
||||
// The characters up to the next Whitespace, ':', or '='
|
||||
// describe the key. But look for escape sequences.
|
||||
StringBuffer key = new StringBuffer();
|
||||
while (pos < line.length()
|
||||
@ -185,6 +185,7 @@ public class Properties extends Hashtable
|
||||
char uni = (char) Integer.parseInt
|
||||
(line.substring(pos, pos + 4), 16);
|
||||
key.append(uni);
|
||||
pos += 4;
|
||||
} // else throw exception?
|
||||
break;
|
||||
default:
|
||||
@ -247,6 +248,7 @@ public class Properties extends Hashtable
|
||||
char uni = (char) Integer.parseInt
|
||||
(line.substring(pos, pos + 4), 16);
|
||||
element.append(uni);
|
||||
pos += 4;
|
||||
} // else throw exception?
|
||||
break;
|
||||
default:
|
||||
|
Loading…
x
Reference in New Issue
Block a user