From 6a8b6dd041406bc879976da159dc4d08eb1feb0e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 27 Feb 2017 21:22:10 -0500 Subject: [PATCH] features/eval: fix :eval setting causing void-variable errors (fix #30) --- modules/feature/eval/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/feature/eval/config.el b/modules/feature/eval/config.el index cb83db91d..06b0ec779 100644 --- a/modules/feature/eval/config.el +++ b/modules/feature/eval/config.el @@ -46,7 +46,7 @@ suitability for the current buffer." (quickrun-add-command MODE COMMAND :mode MODE)" (if (stringp command) `(after! quickrun - (push ,(cons mode command) + (push ',(cons mode command) ,(if (stringp mode) 'quickrun-file-alist 'quickrun--major-mode-alist)))