aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/text.texi5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 1ef836b8f94..b46ee647862 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -5167,6 +5167,11 @@ key-value mappings of a JSON object. It can be either
5167keys; @code{alist} to use alists with symbols as keys; or @code{plist} 5167keys; @code{alist} to use alists with symbols as keys; or @code{plist}
5168to use plists with keyword symbols as keys. 5168to use plists with keyword symbols as keys.
5169 5169
5170@item :array-type
5171The value decides which Lisp object to use for representing a JSON
5172array. It can be either @code{array}, the default, to use Lisp
5173arrays; or @code{list} to use lists.
5174
5170@item :null-object 5175@item :null-object
5171The value decides which Lisp object to use to represent the JSON 5176The value decides which Lisp object to use to represent the JSON
5172keyword @code{null}. It defaults to the symbol @code{:null}. 5177keyword @code{null}. It defaults to the symbol @code{:null}.