fix escaped chars

This commit is contained in:
Christopher Jeffrey 2013-02-24 08:19:38 -06:00
parent f80fb93419
commit 5075fa6efb
1 changed files with 5 additions and 2 deletions

View File

@ -490,14 +490,17 @@ Tput.prototype._compile = function(val) {
case 's':
ch = ' ';
break;
case '^':
ch = '^';
break;
case '\\':
ch = '\\\\';
break;
case ',':
ch = ',';
break;
case ';':
ch = ';';
case ':':
ch = ':';
break;
case '0':
//ch = '\\0';