unicode.breaks: Rename words to unicode-words

db4
Doug Coleman 2015-06-08 11:48:13 -07:00
parent 1cc9b00b42
commit a318ec1eb0
1 changed files with 4 additions and 4 deletions

View File

@ -153,7 +153,7 @@ CONSTANT: wMidNum 9
CONSTANT: wMidNumLet 10 CONSTANT: wMidNumLet 10
CONSTANT: wNumeric 11 CONSTANT: wNumeric 11
CONSTANT: wExtendNumLet 12 CONSTANT: wExtendNumLet 12
CONSTANT: words 13 CONSTANT: unicode-words 13
! Is there a way to avoid this? ! Is there a way to avoid this?
CONSTANT: word-break-classes H{ CONSTANT: word-break-classes H{
@ -182,8 +182,8 @@ SYMBOL: check-number-after
: make-word-table ( -- ) : make-word-table ( -- )
{ wCR } { wLF } connect { wCR } { wLF } connect
{ wNewline wCR wLF } words iota disconnect { wNewline wCR wLF } unicode-words iota disconnect
words iota { wNewline wCR wLF } disconnect unicode-words iota { wNewline wCR wLF } disconnect
{ wALetter } { wMidLetter wMidNumLet } check-letter-after set-table { wALetter } { wMidLetter wMidNumLet } check-letter-after set-table
{ wMidLetter wMidNumLet } { wALetter } check-letter-before set-table { wMidLetter wMidNumLet } { wALetter } check-letter-before set-table
{ wNumeric wALetter } { wNumeric wALetter } connect { wNumeric wALetter } { wNumeric wALetter } connect
@ -199,7 +199,7 @@ SYMBOL: check-number-after
] map ; ] map ;
"word-table" create-in "word-table" create-in
words init-table table unicode-words init-table table
[ make-word-table finish-word-table ] with-variable [ make-word-table finish-word-table ] with-variable
define-constant define-constant
>> >>