aboutsummaryrefslogtreecommitdiff
path: root/early-init.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-28 06:54:37 -0400
committerCraig Jennings <c@cjennings.net>2026-06-28 06:54:37 -0400
commit0ac588eb45df674049dab835b38ee178f552cef7 (patch)
tree5580ced98c28f6e4366967b09b36a4f09d7ad2da /early-init.el
parent9180b25fddc96a4b2cd580b86191fb5686dc20d7 (diff)
downloaddotemacs-0ac588eb45df674049dab835b38ee178f552cef7.tar.gz
dotemacs-0ac588eb45df674049dab835b38ee178f552cef7.zip
docs: finish the commentary/comment audit tail
Condensed early-init's debug-flags note and added a why for the deferred global-font-lock, rewrote three vcf-conversion-helpers comments to name the real intent (keeping the reverse-order-to-preserve-positions rationale), and gave the archived testutil-filesystem a real summary while deleting its line-by-line narration comments.
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el
index 32f144cdb..f2ed5bfa3 100644
--- a/early-init.el
+++ b/early-init.el
@@ -21,7 +21,8 @@
;; (add-hook 'after-init-hook 'benchmark-init/deactivate))
;; -------------------------------- Debug Flags --------------------------------
-;; debugging enabled during Emacs startup. disabled again after Emacs startup.
+;; Keep debug-on-error enabled only during startup; the startup hook restores the
+;; normal interactive behavior after init has loaded.
;; uncomment when repo signatures expire and package installation is necessary
;; (setq package-check-signature nil)
@@ -295,6 +296,8 @@ early-init.el.")
bidi-inhibit-bpa t) ;; additional speedup
;; Disable global font lock mode until after initialization
+;; Defer global font-lock until init finishes; major modes re-enable normal
+;; highlighting after startup.
(setq-default global-font-lock-mode nil)
(add-hook 'emacs-startup-hook #'global-font-lock-mode)