diff options
| author | Sam Varshavchik | 2020-07-10 06:57:02 -0400 |
|---|---|---|
| committer | Sam Varshavchik | 2020-07-12 15:56:45 -0400 |
| commit | 1983c1a71f9dfde6a02d7b3cc4af3209feb98ca6 (patch) | |
| tree | 7af545984ccf3164b13533150af2c4d9f006dacd /unicode/mkbidiclass.pl | |
| parent | 7a9293cd28b293b793793368237d8856cfb0eff4 (diff) | |
| download | courier-libs-1983c1a71f9dfde6a02d7b3cc4af3209feb98ca6.tar.bz2 | |
API cleanup.
Cleanup to use naming consistent with the spec. Exposed the underlying
bidi character type.
Diffstat (limited to 'unicode/mkbidiclass.pl')
| -rw-r--r-- | unicode/mkbidiclass.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unicode/mkbidiclass.pl b/unicode/mkbidiclass.pl index 073dad3..5c902a7 100644 --- a/unicode/mkbidiclass.pl +++ b/unicode/mkbidiclass.pl @@ -45,10 +45,10 @@ while (defined($_=<F>)) grep { #if ($prevl + 1 < $$_[0]) #{ - # $obj->range($prevl+1, $$_[0]-1, "UNICODE_BIDI_CLASS_$$_[2]"); + # $obj->range($prevl+1, $$_[0]-1, "UNICODE_BIDI_TYPE_$$_[2]"); #} #$prevl = $$_[1]; - $obj->range($$_[0], $$_[1], "UNICODE_BIDI_CLASS_$$_[2]"); + $obj->range($$_[0], $$_[1], "UNICODE_BIDI_TYPE_$$_[2]"); } sort { $$a[0] <=> $$b[0] } @table; $obj->output; |
