[armedbear-ticket] [armedbear] #288: Control character names
armedbear
armedbear-devel at common-lisp.net
Sat Jan 12 20:10:56 UTC 2013
#288: Control character names
-------------------------+--------------------------------------------------
Reporter: sboukarev | Owner: somebody
Type: enhancement | Status: new
Priority: major | Milestone:
Component: other | Version:
Keywords: |
-------------------------+--------------------------------------------------
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"))
}}}
--
Ticket URL: <http://trac.common-lisp.net/armedbear/ticket/288>
armedbear <http://common-lisp.net/project/armedbear>
armedbear
More information about the armedbear-ticket
mailing list