Make it more obvious where the wrong attribute is used. - 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 588ba51a539d18de5f9497a38ab7875e7b3e1429
 (DIR) parent c79df9f78d0defed1c7420201416c10768c46076
 (HTM) Author: Christoph Lohmann <20h@r-36.net>
       Date:   Sun,  2 Sep 2012 19:42:00 +0200
       
       Make it more obvious where the wrong attribute is used.
       
       Diffstat:
         M st.c                                |       7 +++----
       
       1 file changed, 3 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/st.c b/st.c
       @@ -1128,7 +1128,7 @@ tsetattr(int *attr, int l) {
                                                fprintf(stderr, "erresc: bad fgcolor %d\n", attr[i]);
                                }
                                else
       -                                fprintf(stderr, "erresc: gfx attr %d unknown\n", attr[i]);
       +                                fprintf(stderr, "erresc(38): gfx attr %d unknown\n", attr[i]);
                                break;
                        case 39:
                                term.c.attr.fg = DefaultFG;
       @@ -1142,7 +1142,7 @@ tsetattr(int *attr, int l) {
                                                fprintf(stderr, "erresc: bad bgcolor %d\n", attr[i]);
                                }
                                else
       -                                fprintf(stderr, "erresc: gfx attr %d unknown\n", attr[i]);
       +                                fprintf(stderr, "erresc(48): gfx attr %d unknown\n", attr[i]);
                                break;
                        case 49:
                                term.c.attr.bg = DefaultBG;
       @@ -1157,8 +1157,7 @@ tsetattr(int *attr, int l) {
                                else if(BETWEEN(attr[i], 100, 107))
                                        term.c.attr.fg = attr[i] - 100 + 8;
                                else
       -                                fprintf(stderr, "erresc: gfx attr %d unknown\n", attr[i]), csidump();
       -                        
       +                                fprintf(stderr, "erresc(default): gfx attr %d unknown\n", attr[i]), csidump();
                                break;
                        }
                }