Skip to content

Commit

Permalink
tweak(daemon): simplify a condition
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Jun 17, 2023
1 parent 718c187 commit 3bd1f76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/me-daemon.el
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
;;; Code:

;; Email (mu4e)
(+lazy-when! (memq 'me-email minemacs-modules)
(when (and +mu4e-auto-start +mu4e-available-p (require 'mu4e nil t))
(+lazy-when! (and (memq 'me-email minemacs-modules) +mu4e-available-p)
(when (and +mu4e-auto-start (require 'mu4e nil t))
(unless (mu4e-running-p)
(+info! "Starting `mu4e' in background.")
(let ((inhibit-message t))
Expand Down

0 comments on commit 3bd1f76

Please sign in to comment.