Function: map--plist-p

map--plist-p is a byte-compiled function defined in map.el.gz.

Signature

(map--plist-p LIST)

Documentation

Return non-nil if LIST is the start of a nonempty plist map.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/map.el.gz
(defsubst map--plist-p (list)
  "Return non-nil if LIST is the start of a nonempty plist map."
  (and (consp list) (atom (car list))))