mirror of
https://github.com/janet-lang/janet
synced 2024-11-29 03:19:54 +00:00
Pretty print tab characters as \t.
This commit is contained in:
parent
f7b49a2c91
commit
125cd222bb
@ -155,6 +155,9 @@ static void janet_escape_string_impl(JanetBuffer *buffer, const uint8_t *str, in
|
|||||||
case '\\':
|
case '\\':
|
||||||
janet_buffer_push_bytes(buffer, (const uint8_t *)"\\\\", 2);
|
janet_buffer_push_bytes(buffer, (const uint8_t *)"\\\\", 2);
|
||||||
break;
|
break;
|
||||||
|
case '\t':
|
||||||
|
janet_buffer_push_bytes(buffer, (const uint8_t *)"\\t", 2);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (c < 32 || c > 126) {
|
if (c < 32 || c > 126) {
|
||||||
uint8_t buf[4];
|
uint8_t buf[4];
|
||||||
|
Loading…
Reference in New Issue
Block a user