all repos — st @ 93661042a2a0cf6f3655360f5c52215c684a4211

st (suckless terminal) config

Simplify tdeftrans
Roberto E. Vargas Caballero k0ga@shike2.com
commit

93661042a2a0cf6f3655360f5c52215c684a4211

parent

18a05fdf4326ac1c7165de8cad0895b5c44fac83

1 files changed, 5 insertions(+), 10 deletions(-)

jump to
M st.cst.c

@@ -2315,19 +2315,14 @@ }

void tdeftran(char ascii) { - char c, (*bp)[2]; - static char tbl[][2] = { - {'0', CS_GRAPHIC0}, {'B', CS_USA}, - {0, 0} - }; + static char cs[] = "0B"; + static int vcs[] = {CS_GRAPHIC0, CS_USA}; + char *p; - for (bp = &tbl[0]; (c = (*bp)[0]) && c != ascii; ++bp) - /* nothing */; - - if (c == 0) + if((p = strchr(cs, ascii)) == NULL) fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii); else - term.trantbl[term.icharset] = (*bp)[1]; + term.trantbl[term.icharset] = vcs[p - cs]; } void