Debug colorscheme.el

`colorscheme/prev` was calling `colorscheme/load`, which has been changed to
`colorscheme/set`.
This commit is contained in:
William Carroll 2020-01-17 10:25:44 +00:00
parent cab39b89af
commit 6ad100c5fa

View file

@ -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 ()