diff options
| author | Christoph Lohmann <20h@r-36.net> | 2014-06-07 13:49:04 +0200 |
|---|---|---|
| committer | Christoph Lohmann <20h@r-36.net> | 2014-06-07 13:49:04 +0200 |
| commit | 587b4435924bab598a904531dc8d01656d1e519a (patch) | |
| tree | 124871f55780b805e4401d8218cf5d2e906fa102 /st.c | |
| parent | 93661042a2a0cf6f3655360f5c52215c684a4211 (diff) | |
| download | st-587b4435924bab598a904531dc8d01656d1e519a.tar.gz st-587b4435924bab598a904531dc8d01656d1e519a.zip | |
Style police.
Diffstat (limited to 'st.c')
| -rw-r--r-- | st.c | 5 |
1 files changed, 3 insertions, 2 deletions
| @@ -2319,10 +2319,11 @@ tdeftran(char ascii) { | |||
| 2319 | static int vcs[] = {CS_GRAPHIC0, CS_USA}; | 2319 | static int vcs[] = {CS_GRAPHIC0, CS_USA}; |
| 2320 | char *p; | 2320 | char *p; |
| 2321 | 2321 | ||
| 2322 | if((p = strchr(cs, ascii)) == NULL) | 2322 | if((p = strchr(cs, ascii)) == NULL) { |
| 2323 | fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii); | 2323 | fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii); |
| 2324 | else | 2324 | } else { |
| 2325 | term.trantbl[term.icharset] = vcs[p - cs]; | 2325 | term.trantbl[term.icharset] = vcs[p - cs]; |
| 2326 | } | ||
| 2326 | } | 2327 | } |
| 2327 | 2328 | ||
| 2328 | void | 2329 | void |
