Function: svg--plist-delete
svg--plist-delete is a byte-compiled function defined in svg.el.gz.
Signature
(svg--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/svg.el.gz
;; Function body copied from `org-plist-delete' in Emacs 26.1.
(defun svg--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))