[kaffe] Re: java/text/SimpleDateFormat.java (compileFormat)

2003-11-28 Thread Mark Wielaard
Hi, On Thu, 2003-11-27 at 23:25, Ito Kazumitsu wrote: > 2003-11-28 Ito Kazumitsu <[EMAIL PROTECTED]> > > * java/text/SimpleDateFormat.java (compileFormat): > isLowerCase and isUpperCase allow too many characters. > Just use >= 'A' && <= 'Z' || >= 'a' && <= 'z'. Thanks a lot

[kaffe] Re: java/text/SimpleDateFormat.java (compileFormat)

2003-11-27 Thread Ito Kazumitsu
Hi, > ":" == Michael Koch <[EMAIL PROTECTED]> writes: >> I am afraid "Character.isLowerCase(char) || Character.isUpperCase(char)" >> also allows too many characters, including Greek or Slavic alphabet >> or even Japanese Zenkaku alphabet. :> Grrr! I thought its the same. All I found int the

[kaffe] Re: java/text/SimpleDateFormat.java (compileFormat)

2003-11-27 Thread Michael Koch
On Fri, Nov 28, 2003 at 01:06:43AM +0900, Ito Kazumitsu wrote: > Hi, > > Browsing GNU Classpath's CVS log, I found: > > 2003-10-02 Michael Koch <[EMAIL PROTECTED]> > > * java/text/SimpleDateFormat.java > (compileFormat): Character.isLetter(char) allows too much characters. >