Function: org-plist-delete
org-plist-delete is a byte-compiled function defined in org-macs.el.
Signature
(org-plist-delete PLIST PROPERTY)
Documentation
Delete PROPERTY from PLIST.
This is in contrast to merely setting it to 0.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-plist-delete (plist property)
"Delete PROPERTY from PLIST.
This is in contrast to merely setting it to 0."
(let (p)
(while plist
(if (not (eq property (car plist)))
(setq p (plist-put p (car plist) (nth 1 plist))))
(setq plist (cddr plist)))
p))