Function: lax-plist-get
lax-plist-get is a byte-compiled function defined in simple.el.gz.
This function is obsolete since 29.1; use plist-get instead.
Signature
(lax-plist-get PLIST PROP)
Documentation
Extract a value from a property list, comparing with equal.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun lax-plist-get (plist prop)
"Extract a value from a property list, comparing with `equal'."
(declare (ftype (function (list t) t))
(pure t) (side-effect-free t) (obsolete plist-get "29.1"))
(plist-get plist prop #'equal))