diff options
| author | Christoph Lohmann <20h@r-36.net> | 2012-09-13 23:21:40 +0200 | 
|---|---|---|
| committer | Christoph Lohmann <20h@r-36.net> | 2012-09-13 23:21:40 +0200 | 
| commit | 30e167c45700474b7fb13c721d6887e4a8435dcc (patch) | |
| tree | 1c8984858b401c145e0b5d01c7ecf81dec0ebfb1 | |
| parent | 184c38c88bb974740958ffc0e84d47a92133c5a3 (diff) | |
| download | st-30e167c45700474b7fb13c721d6887e4a8435dcc.tar.xz st-30e167c45700474b7fb13c721d6887e4a8435dcc.zip  | |
Ignore NUL character as a padding character. Telnet may use this. Patch of
Roberto Vargas.
| -rw-r--r-- | st.c | 2 | 
1 files changed, 2 insertions, 0 deletions
@@ -1723,6 +1723,8 @@ tputc(char *c) {  		if(sel.bx != -1 && BETWEEN(term.c.y, sel.by, sel.ey))  			sel.bx = -1;  		switch(ascii) { +		case '\0': /* padding character, do nothing */ +			break;  		case '\t':  			tputtab(1);  			break;  | 
