diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-17T10·25+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-17T10·56+0000 |
commit | 6ad100c5fa3cf1af17ad6da0389253848c09865f (patch) | |
tree | 7c0a30267f00bc64c0e1d7c431b9ef3da7e44b2a /configs/shared/.emacs.d | |
parent | cab39b89af71cc11e9f7deca8f20fc8b71844d72 (diff) |
Debug colorscheme.el
`colorscheme/prev` was calling `colorscheme/load`, which has been changed to `colorscheme/set`.
Diffstat (limited to 'configs/shared/.emacs.d')
-rw-r--r-- | configs/shared/.emacs.d/wpc/colorscheme.el | 2 |
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 () |