Style police.
This commit is contained in:
parent
93661042a2
commit
587b443592
1 changed files with 3 additions and 2 deletions
5
st.c
5
st.c
|
@ -2319,10 +2319,11 @@ tdeftran(char ascii) {
|
||||||
static int vcs[] = {CS_GRAPHIC0, CS_USA};
|
static int vcs[] = {CS_GRAPHIC0, CS_USA};
|
||||||
char *p;
|
char *p;
|
||||||
|
|
||||||
if((p = strchr(cs, ascii)) == NULL)
|
if((p = strchr(cs, ascii)) == NULL) {
|
||||||
fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
|
fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
|
||||||
else
|
} else {
|
||||||
term.trantbl[term.icharset] = vcs[p - cs];
|
term.trantbl[term.icharset] = vcs[p - cs];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue