branch: externals/ef-themes
commit 11497c4fdcb61c9474dd03774b4f9b9c0fee71f3
Author: Protesilaos Stavrou <i...@protesilaos.com>
Commit: Protesilaos Stavrou <i...@protesilaos.com>

    Make minor stylistic code tweak
---
 ef-themes.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/ef-themes.el b/ef-themes.el
index b846f49415..42545fe893 100644
--- a/ef-themes.el
+++ b/ef-themes.el
@@ -361,9 +361,10 @@ to the relevant themes.
 When called interactively, VARIANT is the prefix argument which
 prompts with completion for either `light' or `dark'."
   (interactive
-   (list (when current-prefix-arg
-           (intern (completing-read "Random choice of Ef themes VARIANT: "
-                                    '(light dark) nil t)))))
+   (list
+    (when current-prefix-arg
+      (intern (completing-read "Random choice of Ef themes VARIANT: "
+                               '(light dark) nil t)))))
   (let* ((themes (ef-themes--minus-current variant))
          (n (random (length themes)))
          (pick (nth n themes)))

Reply via email to