about summary refs log tree commit diff
path: root/configs/shared/.emacs.d/wpc/colorscheme.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-01-17T10·25+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-01-17T10·56+0000
commit6ad100c5fa3cf1af17ad6da0389253848c09865f (patch)
tree7c0a30267f00bc64c0e1d7c431b9ef3da7e44b2a /configs/shared/.emacs.d/wpc/colorscheme.el
parentcab39b89af71cc11e9f7deca8f20fc8b71844d72 (diff)
Debug colorscheme.el
`colorscheme/prev` was calling `colorscheme/load`, which has been changed to
`colorscheme/set`.
Diffstat (limited to 'configs/shared/.emacs.d/wpc/colorscheme.el')
-rw-r--r--configs/shared/.emacs.d/wpc/colorscheme.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/shared/.emacs.d/wpc/colorscheme.el b/configs/shared/.emacs.d/wpc/colorscheme.el
index ad015bb7b754..e9bba5ed37ad 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 ()