Function: use-package-plist-cons

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

Signature

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

Documentation

Cons VALUE onto the head 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-cons (plist property value)
  "Cons VALUE onto the head of the list at PROPERTY in PLIST."
  (plist-put plist property (cons value (plist-get plist property))))