Function: use-package-plist-append

use-package-plist-append is a byte-compiled function defined in use-package-core.el.gz.

Signature

(use-package-plist-append PLIST PROPERTY VALUE)

Documentation

Append VALUE onto the front of the list at PROPERTY in PLIST.

Source Code

;; Defined in /usr/src/emacs/lisp/use-package/use-package-core.el.gz
(defsubst use-package-plist-append (plist property value)
  "Append VALUE onto the front of the list at PROPERTY in PLIST."
  (plist-put plist property (append value (plist-get plist property))))