Function: json-plist-p
json-plist-p is a byte-compiled function defined in json.el.gz.
Signature
(json-plist-p LIST)
Documentation
Non-nil if and only if LIST is a plist with keyword keys.
Source Code
;; Defined in /usr/src/emacs/lisp/json.el.gz
(defun json-plist-p (list)
"Non-nil if and only if LIST is a plist with keyword keys."
(declare (pure t) (side-effect-free error-free))
(while (and (keywordp (car-safe list))
(consp (cdr list))
(setq list (cddr list))))
(null list))