diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-28 06:54:37 -0400 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-28 06:54:37 -0400 |
| commit | 2a8d33446d8e135483a2a3583d2a47aff580c4a8 (patch) | |
| tree | e262f6b0126235c5a46d50dffa3624b21907ccee /early-init.el | |
| parent | 13b3050434e349c2f3d1a33834ae139a36fb1865 (diff) | |
| download | dotemacs-2a8d33446d8e135483a2a3583d2a47aff580c4a8.tar.gz dotemacs-2a8d33446d8e135483a2a3583d2a47aff580c4a8.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.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index 32f144cd..f2ed5bfa 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) |
