Re: [Factor-talk] ch-upper? recent meaning change

2010-10-11 Thread Samuel Tardieu
2010/10/9 Slava Pestov > The word was added by mistake and has been removed. You can use the > following words: > > ascii:letter? > ascii:LETTER? > unicode.categories:letter? > unicode.categories:LETTER? > Perfect, thanks!

Re: [Factor-talk] ch-upper? recent meaning change

2010-10-08 Thread Slava Pestov
Hi Samuel, The word was added by mistake and has been removed. You can use the following words: ascii:letter? ascii:LETTER? unicode.categories:letter? unicode.categories:LETTER? On Fri, Oct 8, 2010 at 12:46 PM, Samuel Tardieu wrote: > In change 2ef2372c87d3657ac0964c5f4e1ddfd5b28cf029 from last

[Factor-talk] ch-upper? recent meaning change

2010-10-08 Thread Samuel Tardieu
In change 2ef2372c87d3657ac0964c5f4e1ddfd5b28cf029 from last Wednesday, ch-upper? and ch-lower? were moved from unicode.case to ascii. The definition of ch-upper? is: : ch-upper? ( ch -- ? ) dup ch>upper = ; but the ch>upper now used is the one from ascii instead of the one from unicode.data. Be