Fix display of quoted (contro) characters w/o breaking 8-bit display

This commit is contained in:
Joachim Nilsson 2010-07-26 02:09:15 +02:00
parent bde0c0c9d6
commit f617f84293

View File

@ -158,14 +158,10 @@ static void tty_show(char c)
tty_put('M'); tty_put('M');
tty_put('-'); tty_put('-');
tty_put(UNMETA(c)); tty_put(UNMETA(c));
} } else if (ISCTL(c) && !ISMETA(c)) {
#if 0
else if (ISCTL(c)) {
tty_put('^'); tty_put('^');
tty_put(UNCTL(c)); tty_put(UNCTL(c));
} } else {
#endif
else {
tty_put(c); tty_put(c);
} }
} }