From 7de3f78af6946c8b7d709ff603fcdfcae0001459 Mon Sep 17 00:00:00 2001 From: BirDt_ Date: Sat, 27 Sep 2025 10:42:06 +0800 Subject: [PATCH] Fix a scheme-ism --- screens/dashboard.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/screens/dashboard.el b/screens/dashboard.el index f53892d..45132e5 100644 --- a/screens/dashboard.el +++ b/screens/dashboard.el @@ -87,7 +87,7 @@ "No connection to weather service :("))) (defun default-dash () - "Returns the default dashboard." + "Return the default dashboard." `(:content ,(concat enlight-calendar "\n\n" (grid-make-row @@ -128,7 +128,7 @@ )) (defun android-dash () - "Returns the android dashboard." + "Return the android dashboard." `(:content ,(concat (grid-make-row (list (grid-make-column (grid-make-box `(:content ,(concat @@ -171,7 +171,7 @@ "Gets the dashboard content for the current platform." (cond ((equal system-type 'android) (android-dash)) - (else (default-dash)))) + (t (default-dash)))) ;; Dashboard screen using enlight