Function: comp-eln-load-path-eff

comp-eln-load-path-eff is a byte-compiled function defined in comp.el.gz.

Signature

(comp-eln-load-path-eff)

Documentation

Return a list of effective eln load directories.

Account for native-comp-eln-load-path and comp-native-version-dir.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; Primitive function advice machinery

(defun comp-eln-load-path-eff ()
  "Return a list of effective eln load directories.
Account for `native-comp-eln-load-path' and `comp-native-version-dir'."
  (mapcar (lambda (dir)
            (expand-file-name comp-native-version-dir
                              (file-name-as-directory
                               (expand-file-name dir invocation-directory))))
          native-comp-eln-load-path))