Skip to content

Commit

Permalink
fix: remove progn
Browse files Browse the repository at this point in the history
  • Loading branch information
guidoschmidt committed Nov 26, 2024
1 parent 0a6a9b4 commit 0898dd4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions circadian.el
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,7 @@ set and and sort the final list by time."
(let* ((possible-theme-list (cl-remove-if (lambda (entry)
(custom-theme-enabled-p entry))
theme-or-theme-list)))
(progn
(nth (random (length possible-theme-list)) possible-theme-list)))
(nth (random (length possible-theme-list)) possible-theme-list))
theme-or-theme-list)))
(circadian-enable-theme theme)))

Expand Down

0 comments on commit 0898dd4

Please sign in to comment.