Function: use-package-handler/:load-path

use-package-handler/:load-path is a byte-compiled function defined in use-package-core.el.gz.

Signature

(use-package-handler/:load-path NAME KEYWORD ARG REST STATE)

Source Code

;; Defined in /usr/src/emacs/lisp/use-package/use-package-core.el.gz
(defun use-package-handler/:load-path (name _keyword arg rest state)
  (let ((body (use-package-process-keywords name rest
                (plist-put state :load-path arg))))
    (use-package-concat
     (mapcar #'(lambda (path)
                 `(eval-and-compile (add-to-list 'load-path ,path)))
             arg)
     body)))