From 1bc2af6ce58073c4abf1ffdccdbbb65050879f4a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 22 Sep 2025 22:27:18 -0400 Subject: [PATCH] fix(lib): remove black hole insertions These inserts were writing nowhere. --- lisp/lib/profiles.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lisp/lib/profiles.el b/lisp/lib/profiles.el index 4dc9e6c43..0ef3c7357 100644 --- a/lisp/lib/profiles.el +++ b/lisp/lib/profiles.el @@ -271,9 +271,7 @@ caches them in `doom--profiles'. If RELOAD? is non-nil, refresh the cache." (pcase-dolist (`(,file ,fn _) doom-profile-generators) (let ((file (doom-path init-dir file))) (doom-log "Building %s..." file) - (insert "\n;;;; START " file " ;;;;\n") - (doom-file-write file (funcall fn) :printfn #'prin1) - (insert "\n;;;; END " file " ;;;;\n"))))) + (doom-file-write file (funcall fn) :printfn #'prin1))))) (with-file! init-file (insert ";; -*- coding: utf-8; lexical-binding: t; -*-\n" ";; This file was autogenerated; do not edit it by hand!\n")