removed truecolor stuff - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 0ecfcc39b07bb7cca6a688a743299e6ef990e122
 (DIR) parent abe6f3b0e4a76ff80315cf6e958549e8295737d6
 (HTM) Author: Aurélien Aptel <aurelien.aptel@gmail.com>
       Date:   Thu, 14 May 2009 00:28:10 +0200
       
       removed truecolor stuff
       
       Diffstat:
         M st.c                                |      15 ---------------
       
       1 file changed, 0 insertions(+), 15 deletions(-)
       ---
 (DIR) diff --git 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: