Introduction
Introduction Statistics Contact Development Disclaimer Help
tMake line drawing work again. - st - [fork] customized build of st, the simple…
git clone git://src.adamsgaard.dk/st
Log
Files
Refs
README
LICENSE
---
commit b4b513c791e01e46399b460789b830ddfc7cb425
parent 15c2bff9faa87644abf96c19b17133d03d40b974
Author: Christoph Lohmann <[email protected]>
Date: Sat, 19 Jan 2013 18:38:28 +0100
Make line drawing work again.
Diffstat:
M st.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/st.c b/st.c
t@@ -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 */
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.