From 0df791469d5f6c70e1caac454598089cabd13208 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 11 Feb 2021 23:00:49 -0500 Subject: [PATCH] Resolve symlinks in autoloads files For marginally faster package load times. --- core/cli/autoloads.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/cli/autoloads.el b/core/cli/autoloads.el index 11641ff5f..4fab7080f 100644 --- a/core/cli/autoloads.el +++ b/core/cli/autoloads.el @@ -205,6 +205,7 @@ one wants that.") exclude)) (file-readable-p file)) (doom-log "Scanning %s" file) + (setq file (file-truename file)) (with-temp-buffer (if literal (insert-file-contents file)