Function: lax-plist-put
lax-plist-put is a byte-compiled function defined in simple.el.gz.
This function is obsolete since 29.1; use plist-put instead.
Signature
(lax-plist-put PLIST PROP VAL)
Documentation
Change value in PLIST of PROP to VAL, 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-put (plist prop val)
"Change value in PLIST of PROP to VAL, comparing with `equal'."
(declare (obsolete plist-put "29.1"))
(plist-put plist prop val #'equal))