mirror of
https://github.com/embarklabs/neo-blessed.git
synced 2025-01-09 10:42:02 +00:00
fix escaped chars
This commit is contained in:
parent
f80fb93419
commit
5075fa6efb
@ -490,14 +490,17 @@ Tput.prototype._compile = function(val) {
|
|||||||
case 's':
|
case 's':
|
||||||
ch = ' ';
|
ch = ' ';
|
||||||
break;
|
break;
|
||||||
|
case '^':
|
||||||
|
ch = '^';
|
||||||
|
break;
|
||||||
case '\\':
|
case '\\':
|
||||||
ch = '\\\\';
|
ch = '\\\\';
|
||||||
break;
|
break;
|
||||||
case ',':
|
case ',':
|
||||||
ch = ',';
|
ch = ',';
|
||||||
break;
|
break;
|
||||||
case ';':
|
case ':':
|
||||||
ch = ';';
|
ch = ':';
|
||||||
break;
|
break;
|
||||||
case '0':
|
case '0':
|
||||||
//ch = '\\0';
|
//ch = '\\0';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user