Function: org-plist-delete
org-plist-delete is a byte-compiled function defined in
org-macs.el.gz.
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 /usr/src/emacs/lisp/org/org-macs.el.gz
(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))