Function: editorconfig--get-local-variables

editorconfig--get-local-variables is a byte-compiled function defined in editorconfig.el.gz.

Signature

(editorconfig--get-local-variables PROPS)

Documentation

Get variables settings according to EditorConfig PROPS.

Source Code

;; Defined in /usr/src/emacs/lisp/editorconfig.el.gz
(defun editorconfig--get-local-variables (props)
  "Get variables settings according to EditorConfig PROPS."
  (let ((alist ()))
    (run-hook-wrapped 'editorconfig-get-local-variables-functions
                      (lambda (fun props)
                        (setq alist (append (funcall fun props) alist))
                        nil)
                      props)
    alist))