X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=st.c;h=769de8b8e9bbce56b93ff485e1118351302cea8c;hb=b4b513c791e01e46399b460789b830ddfc7cb425;hp=7b0fb21e076e41730117dc52ebd736ac7dbfd50b;hpb=15c2bff9faa87644abf96c19b17133d03d40b974;p=st.git diff --git a/st.c b/st.c index 7b0fb21..769de8b 100644 --- a/st.c +++ b/st.c @@ -1987,10 +1987,13 @@ tputc(char *c, int len) { term.esc = ESC_START; return; case '\016': /* SO */ - term.c.attr.mode |= ATTR_GFX; - return; case '\017': /* SI */ - term.c.attr.mode &= ~ATTR_GFX; + /* + * Different charsets are hard to handle. Applications + * should use the right alt charset escapes for the + * only reason they still exist: line drawing. The + * rest is incompatible history st should not support. + */ return; case '\032': /* SUB */ case '\030': /* CAN */