From 1f45e9e79edf00d77726fb80662061b769a33b40 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 3 Nov 2024 14:14:35 -0500 Subject: [PATCH] refactor: remove redundant require calls Amend: aab1595011c2 --- lisp/lib/packages.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/lisp/lib/packages.el b/lisp/lib/packages.el index 88269b1bd..4a4d05bf6 100644 --- a/lisp/lib/packages.el +++ b/lisp/lib/packages.el @@ -153,7 +153,6 @@ package's name as a symbol, and whose CDR is the plist supplied to its ;;;###autoload (defun doom-initialize-core-packages (&optional force-p) "Ensure `straight' is installed and was compiled with this version of Emacs." - (require 'doom-straight) (when (or force-p (null (bound-and-true-p straight-recipe-repositories))) (doom-log "Initializing straight") (let ((packages (doom-package-list '((:doom))))) @@ -172,7 +171,6 @@ If FORCE-P is non-nil, do it anyway. This ensures `doom-packages' is populated and `straight' recipes are properly processed." - (require 'doom-straight) (doom-initialize-core-packages force-p) (when (or force-p (not (bound-and-true-p package--initialized))) (doom-log "Initializing package.el")