From 856e4f27e54c9db63c7389c4097203ebff82e9c5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 10 Sep 2018 22:57:26 -0400 Subject: [PATCH] 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. --- modules/feature/eval/autoload/settings.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/feature/eval/autoload/settings.el b/modules/feature/eval/autoload/settings.el index 5a9e579eb..6ff75db23 100644 --- a/modules/feature/eval/autoload/settings.el +++ b/modules/feature/eval/autoload/settings.el @@ -3,6 +3,7 @@ ;; ;; REPLs +;;;###autoload (defvar +eval-repls nil "An alist mapping major modes to plists that describe REPLs. Used by `+eval/open-repl' and filled with the `:repl' setting.") @@ -29,6 +30,7 @@ command that will be called interactively." ;; ;; Evaluation +;;;###autoload (defvar +eval-runners nil "Alist mapping major modes to interactive runner functions.")