fix escaped chars
This commit is contained in:
parent
f80fb93419
commit
5075fa6efb
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue