aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-09-12 13:20:10 +0200
committerChristoph Lohmann <20h@r-36.net>2012-09-12 13:20:10 +0200
commit8f1144edee8f4c9ac54faae2ad522544e9e217fa (patch)
tree0659aad7a06ebac49cca5e717c3543bbf81bd193
parent121d9109e8202aaa8df836f2d23922008bdf2c72 (diff)
downloadst-8f1144edee8f4c9ac54faae2ad522544e9e217fa.tar.gz
st-8f1144edee8f4c9ac54faae2ad522544e9e217fa.zip
Make nyancat(1) work. Important release feature!
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 5e8cf02..75c6cea 100644
--- a/st.c
+++ b/st.c
@@ -1204,7 +1204,7 @@ tsetattr(int *attr, int l) {
1204 else if(BETWEEN(attr[i], 90, 97)) 1204 else if(BETWEEN(attr[i], 90, 97))
1205 term.c.attr.fg = attr[i] - 90 + 8; 1205 term.c.attr.fg = attr[i] - 90 + 8;
1206 else if(BETWEEN(attr[i], 100, 107)) 1206 else if(BETWEEN(attr[i], 100, 107))
1207 term.c.attr.fg = attr[i] - 100 + 8; 1207 term.c.attr.bg = attr[i] - 100 + 8;
1208 else 1208 else
1209 fprintf(stderr, "erresc(default): gfx attr %d unknown\n", attr[i]), csidump(); 1209 fprintf(stderr, "erresc(default): gfx attr %d unknown\n", attr[i]), csidump();
1210 break; 1210 break;