diff options
author | ed <ed@FreeBSD.org> | 2010-11-05 00:56:21 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2010-11-05 00:56:21 +0000 |
commit | a834f8918cf280d072e604e4df49953dc3d19fce (patch) | |
tree | 77b23035d68c9f13e2721acbd3b9ff0634c42994 /sys/teken/sequences | |
parent | bfe6aa84f90b7b86c491748493b5b9859a78da97 (diff) | |
download | FreeBSD-src-a834f8918cf280d072e604e4df49953dc3d19fce.zip FreeBSD-src-a834f8918cf280d072e604e4df49953dc3d19fce.tar.gz |
Partially implement the mysterious cons25 \e[x escape sequence.
It seems the terminfo library on some systems (OS X, Linux) may emit the
sequence \e[x to reset to default attributes. Apart from using the
zero-command, this escape sequence allows many more operations, such as
setting ANSI colors. I don't see this used anywhere, so this should be
sufficient for now.
This deficiency was spotted by the Debian GNU/kFreeBSD. They have their
own patch, which is slightly flawed in my opinion. I don't know why they
never reported this issue to us.
MFC after: 1 week
Diffstat (limited to 'sys/teken/sequences')
-rw-r--r-- | sys/teken/sequences | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/teken/sequences b/sys/teken/sequences index cf720b0..a8ee528 100644 --- a/sys/teken/sequences +++ b/sys/teken/sequences @@ -106,6 +106,7 @@ C25ADFG Cons25 set adapter foreground ^[ [ = F r C25BLPD Cons25 set bell pitch duration ^[ [ = B r r C25CURS Cons25 set cursor type ^[ [ = S r C25MODE Cons25 set terminal mode ^[ [ = T r +C25SGR Cons25 set graphic rendition ^[ [ x r r C25VTSW Cons25 switch virtual terminal ^[ [ z r # VT52 compatibility |