Control character names
ABCL doesn't recognize all abbreviations for ASCII control characters:
(remove-if #'name-char '((#x00 "Nul") (#x01 "Soh") (#x02 "Stx") (#x03 "Etx") (#x04 "Eot")
(#x05 "Enq") (#x06 "Ack") (#x07 "Bel") (#x08 "Bs") (#x09 "Ht") (#x0A "Lf")
(#x0B "Vt") (#x0C "Ff") (#x0D "Cr") (#x0E "So") (#x0F "Si")
(#x10 "Dle") (#x11 "Dc1") (#x12 "Dc2") (#x13 "Dc3") (#x14 "Dc4")
(#x15 "Nak") (#x16 "Syn") (#x17 "Etb") (#x18 "Can") (#x19 "Em")
(#x1A "Sub") (#x1B "Esc") (#x1C "Fs") (#x1D "Gs") (#x1E "Rs")
(#x1F "Us") (#x20 "Sp") (#x7f "Del"))
:key #'second)
((#x7 "Bel") (#x8 "Bs") (#x9 "Ht") (#xA "Lf")
(#xC "Ff") (#xD "Cr") (#x1B "Esc") (#x20 "Sp") (#x7F "Del"))
Change History (5)
Owner: |
changed from somebody to vvoutilainen
|
Status: |
new →
accepted
|
Status: |
accepted →
assigned
|
Resolution: |
→ fixed
|
Status: |
assigned →
closed
|
Corrected by r14351.