diff options
Diffstat (limited to 'src/json.c')
| -rw-r--r-- | src/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json.c b/src/json.c index beac242b709..44eae653eb5 100644 --- a/src/json.c +++ b/src/json.c | |||
| @@ -323,7 +323,7 @@ json_out_string (json_out_t *jo, Lisp_Object str, int skip) | |||
| 323 | { | 323 | { |
| 324 | /* FIXME: this code is slow, make faster! */ | 324 | /* FIXME: this code is slow, make faster! */ |
| 325 | 325 | ||
| 326 | static const char hexchar[16] = "0123456789ABCDEF"; | 326 | static const char hexchar[16] ATTRIBUTE_NONSTRING = "0123456789ABCDEF"; |
| 327 | ptrdiff_t len = SBYTES (str); | 327 | ptrdiff_t len = SBYTES (str); |
| 328 | json_make_room (jo, len + 2); | 328 | json_make_room (jo, len + 2); |
| 329 | json_out_byte (jo, '"'); | 329 | json_out_byte (jo, '"'); |