branch: externals/ef-themes
commit d40705310ef12e6c71433fbe9b8a272c6bf42657
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Use custom-known-themes for better filtering
---
ef-themes.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ef-themes.el b/ef-themes.el
index 9864cfea9c..879cc4b177 100644
--- a/ef-themes.el
+++ b/ef-themes.el
@@ -47,11 +47,11 @@
;;; Commands and their helper functions
(defun ef-themes--list-enabled-themes ()
- "Return list of `custom-enabled-themes' with ef- prefix."
+ "Return list of `custom-known-themes' with ef- prefix."
(seq-filter
(lambda (theme)
(string-prefix-p "ef-" (symbol-name theme)))
- custom-enabled-themes))
+ custom-known-themes))
(defconst ef-themes-themes '(ef-summer ef-winter)
"List of Ef Themes.")