From b5ee20da1513f939dad9950c2c36f6af615a236a Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Fri, 12 Jun 2026 11:32:53 -0500 Subject: fix(dashboard): require recentf before touching recentf-exclude cj/--dashboard-exclude-emms-from-recentf calls add-to-list on recentf-exclude, which is void until recentf loads. Init order guarantees it today, but a require makes the helper order-independent rather than dependent on load sequence. --- modules/dashboard-config.el | 1 + 1 file changed, 1 insertion(+) (limited to 'modules') diff --git a/modules/dashboard-config.el b/modules/dashboard-config.el index c70b78c2..3b8a3c5c 100644 --- a/modules/dashboard-config.el +++ b/modules/dashboard-config.el @@ -149,6 +149,7 @@ window." "Exclude the EMMS history file from recentf. Adds to `recentf-exclude' so entries set elsewhere (e.g. in system-defaults) are preserved rather than overwritten." + (require 'recentf) (add-to-list 'recentf-exclude "/emms/history")) (use-package dashboard -- cgit v1.2.3