* lisp/json.el (json-encode-char): Codes 127 isn't "ASCII printable" either.

This commit is contained in:
Stefan Monnier 2012-09-27 18:55:03 -04:00
parent 9cad61d6db
commit e28e67b3a3
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
* json.el (json-encode-char): Codes 128-160 aren't "ASCII printable".
* json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2012-09-27 Glenn Morris <rgm@gnu.org>

View file

@ -315,7 +315,7 @@ representation will be parsed correctly."
(control-char
(format "\\%c" control-char))
;; ASCIIish printable character.
((and (> char 31) (< char 128))
((and (> char 31) (< char 127))
(format "%c" char))
;; Fallback: UCS code point in \uNNNN form.
(t