diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-20 20:50:06 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-20 20:50:06 +0200 |
commit | 4b9b96afcf9886d3f22fcd88cddd032e17437ba2 (patch) | |
tree | 5650685a59af739a4316b33b77417498798c9154 /org-roam-ui.el | |
parent | 5f4611d65e40eae3ca6191a15f68d69ea5a1c4cb (diff) |
fixed let declaration for theme servlet
Diffstat (limited to 'org-roam-ui.el')
-rw-r--r-- | org-roam-ui.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/org-roam-ui.el b/org-roam-ui.el index 9b8590e..6782fd5 100644 --- a/org-roam-ui.el +++ b/org-roam-ui.el @@ -54,7 +54,8 @@ (if (boundp 'doom-themes--colors) (let* - ((colors (butlast doom-themes--colors (- (length doom-themes--colors) 25))) ui-theme (list nil)) + ((colors (butlast doom-themes--colors (- (length doom-themes--colors) 25))) + (ui-theme (list nil))) (progn (dolist (color colors) (push (cons (car color) (car (cdr color))) ui-theme)) |