Variable: json-special-chars

json-special-chars is a variable defined in json.el.gz.

Value

((34 . 34) (92 . 92) (98 . 8) (102 . 12) (110 . 10) (114 . 13)
 (116 . 9))

Documentation

Characters which are escaped in JSON, with their Elisp counterparts.

Source Code

;; Defined in /usr/src/emacs/lisp/json.el.gz
;;;; Strings

(defconst json-special-chars
  '((?\" . ?\")
    (?\\ . ?\\)
    (?b . ?\b)
    (?f . ?\f)
    (?n . ?\n)
    (?r . ?\r)
    (?t . ?\t))
  "Characters which are escaped in JSON, with their Elisp counterparts.")