From 6ad100c5fa3cf1af17ad6da0389253848c09865f Mon Sep 17 00:00:00 2001 From: William Carroll Date: Fri, 17 Jan 2020 10:25:44 +0000 Subject: [PATCH] Debug colorscheme.el `colorscheme/prev` was calling `colorscheme/load`, which has been changed to `colorscheme/set`. --- configs/shared/.emacs.d/wpc/colorscheme.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/shared/.emacs.d/wpc/colorscheme.el b/configs/shared/.emacs.d/wpc/colorscheme.el index ad015bb7b..e9bba5ed3 100644 --- a/configs/shared/.emacs.d/wpc/colorscheme.el +++ b/configs/shared/.emacs.d/wpc/colorscheme.el @@ -70,7 +70,7 @@ Cycle prev otherwise." (let ((theme (if forward? (cycle/next colorscheme/whitelist) (cycle/prev colorscheme/whitelist)))) - (colorscheme/load theme) + (colorscheme/set theme) (message (s-concat "Active theme: " (symbol/to-string theme))))) (defun colorscheme/next ()