From 06328840c3b788308ea0a3b12acc1b86816f7f07 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 15 Sep 2019 19:23:06 -0400 Subject: [PATCH] lang/org: split compound condition into two :when's --- modules/lang/org/config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/lang/org/config.el b/modules/lang/org/config.el index cad487db1..da79a3069 100644 --- a/modules/lang/org/config.el +++ b/modules/lang/org/config.el @@ -383,8 +383,8 @@ file isn't in `org-directory'." (add-to-list 'org-export-backends 'md)) (use-package! ox-pandoc - :when (and (featurep! +pandoc) - (executable-find "pandoc")) + :when (featurep! +pandoc) + :when (executable-find "pandoc") :after ox :init (add-to-list 'org-export-backends 'pandoc)