summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2024-04-14 16:59:53 -0500
committerCraig Jennings <c@cjennings.net>2024-04-14 16:59:53 -0500
commitb554515a89317f3e59c04cf0f813d5a354d7df48 (patch)
tree4d7a072767613e81ae4f0b94e2eb0fa6b1f4bce5 /modules
parentdc8ec3fa8e996b605e01dc54dd41534ce0558335 (diff)
need to intern fallback theme name
Diffstat (limited to 'modules')
-rw-r--r--modules/ui-theme.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui-theme.el b/modules/ui-theme.el
index 8d544f9f..64fa739b 100644
--- a/modules/ui-theme.el
+++ b/modules/ui-theme.el
@@ -87,7 +87,7 @@ If FILENAME isn't writeable, return nil. If successful, return t."
"Display MSG and load ui-theme fallback-theme-name.
Used to handle errors with loading persisted theme."
(message (concat msg (format " Loading fallback theme %s" fallback-theme-name)))
- (load-theme fallback-theme-name t))
+ (load-theme (intern fallback-theme-name) t))
(defun cj/load-theme-from-file ()
"Apply the thame name contained in theme-file as the active UI theme.