1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00

* 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

@ -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