Opened 16 years ago
Closed 16 years ago
#92 closed defect (fixed)
Characters created with invalid code points
| Reported by: | ehuelsmann | Owned by: | nobody |
|---|---|---|---|
| Priority: | major | Milestone: | 0.20 |
| Component: | libraries | Version: | |
| Keywords: | Cc: | ||
| Parent Tickets: |
Description
ABCL will happily create characters in the range #xD800 to #xDFFF and above #x10FFFF. These refer to invalid unicode code points and should not be allowed.
Change History (4)
comment:1 Changed 16 years ago by
| Component: | CLOS → libraries |
|---|---|
| Owner: | changed from somebody to nobody |
comment:2 Changed 16 years ago by
comment:3 Changed 16 years ago by
Note that the characters over #xFFFF only constitute a problem when the CHAR-CODE-LIMIT will be raised to #x100000. The current value is the upper exclusive bound associated with 16-bit chars.
comment:4 Changed 16 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Closing as fixed. Ticket #65 should track support for Supplementary characters from unicode (those with code points > #xFFFF).
Note: See
TracTickets for help on using
tickets.
(In [12584]) Re #92: Don't return characters for the range #xD800 to #xDFFF.