]> Sergey Matveev's repositories - st.git/commitdiff
removed truecolor stuff
authorAurélien Aptel <aurelien.aptel@gmail.com>
Wed, 13 May 2009 22:28:10 +0000 (00:28 +0200)
committerAurélien Aptel <aurelien.aptel@gmail.com>
Wed, 13 May 2009 22:28:10 +0000 (00:28 +0200)
st.c

diff --git a/st.c b/st.c
index 2318435a4dd7302482bc0e9ffcb5d585898b7588..ef0fd17d00eaa7ea057fb7bb88093b4ed937f9a6 100644 (file)
--- a/st.c
+++ b/st.c
@@ -364,21 +364,6 @@ void
 tsetattr(int *attr, int l) {
        int i;
 
-#ifdef TRUECOLOR /* ESC [ ? <fg/bg> ; <r> ; <g> ; <b> m */
-       Color col;
-       if(escseq.priv && escseq.len == 4) { /* True color extension :) */
-               col = (escseq.arg[1]<<16) + (escseq.arg[2]<<8) + escseq.arg[3];
-               switch(escseq.arg[0]) {
-               case 3: /* foreground */
-                       term.c.attr.fg = col;
-                       break;
-               case 4: /* background */
-                       term.c.attr.bg = col;
-                       break;
-               }
-       }
-       else
-#endif
                for(i = 0; i < l; i++) {
                        switch(attr[i]) {
                        case 0: