mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-01-06 01:02:04 -08:00
fix(lib): remove black hole insertions
These inserts were writing nowhere.
This commit is contained in:
parent
093488fcb7
commit
1bc2af6ce5
1 changed files with 1 additions and 3 deletions
|
|
@ -271,9 +271,7 @@ caches them in `doom--profiles'. If RELOAD? is non-nil, refresh the cache."
|
||||||
(pcase-dolist (`(,file ,fn _) doom-profile-generators)
|
(pcase-dolist (`(,file ,fn _) doom-profile-generators)
|
||||||
(let ((file (doom-path init-dir file)))
|
(let ((file (doom-path init-dir file)))
|
||||||
(doom-log "Building %s..." file)
|
(doom-log "Building %s..." file)
|
||||||
(insert "\n;;;; START " file " ;;;;\n")
|
(doom-file-write file (funcall fn) :printfn #'prin1)))))
|
||||||
(doom-file-write file (funcall fn) :printfn #'prin1)
|
|
||||||
(insert "\n;;;; END " file " ;;;;\n")))))
|
|
||||||
(with-file! init-file
|
(with-file! init-file
|
||||||
(insert ";; -*- coding: utf-8; lexical-binding: t; -*-\n"
|
(insert ";; -*- coding: utf-8; lexical-binding: t; -*-\n"
|
||||||
";; This file was autogenerated; do not edit it by hand!\n")
|
";; This file was autogenerated; do not edit it by hand!\n")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue