feature/eval: autoload +eval-{repls,runners}

Fix void-variable error when, under certain conditions, these variables
are referred to before their containing files are loaded.
This commit is contained in:
Henrik Lissner 2018-09-10 22:57:26 -04:00
parent ed702bab16
commit 856e4f27e5
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -3,6 +3,7 @@
;; ;;
;; REPLs ;; REPLs
;;;###autoload
(defvar +eval-repls nil (defvar +eval-repls nil
"An alist mapping major modes to plists that describe REPLs. Used by "An alist mapping major modes to plists that describe REPLs. Used by
`+eval/open-repl' and filled with the `:repl' setting.") `+eval/open-repl' and filled with the `:repl' setting.")
@ -29,6 +30,7 @@ command that will be called interactively."
;; ;;
;; Evaluation ;; Evaluation
;;;###autoload
(defvar +eval-runners nil (defvar +eval-runners nil
"Alist mapping major modes to interactive runner functions.") "Alist mapping major modes to interactive runner functions.")