update files

This commit is contained in:
nuintun 2015-11-25 12:22:41 +08:00
parent 91f347dda0
commit 6feba77871

View File

@ -130,9 +130,9 @@ module.exports = function (Terminal){
out += '>';
break;
default:
if (ch <= ' ') {
if (ch === ' ') {
out += '&nbsp;';
} else {
} else if (ch > ' ') {
if (this.isWide(ch)) i++;
out += ch;