From 67d8040ad19461cf2a393af95268f92b784d7ece Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 24 May 2026 16:26:06 -0500 Subject: docs(load-graph): classify core libraries and command modules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Third classification batch: the remaining core and library command modules from init.el's early block — external-open, media-utils, auth-config, keyboard-macros, system-utils, text-config, undead-buffers. I annotated each with the load-graph header contract, added a Batch 3 table to the inventory, and extended the validation allowlist. 23 of 102 modules are now classified. No new hidden dependencies in this batch. auth-config stays eager because other modules need credentials early; the command libraries (external-open, media-utils, keyboard-macros) are eager only by init order and flagged as Phase 4 deferral candidates. --- modules/external-open.el | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'modules/external-open.el') diff --git a/modules/external-open.el b/modules/external-open.el index 57cffadc..22e56a29 100644 --- a/modules/external-open.el +++ b/modules/external-open.el @@ -3,6 +3,15 @@ ;; ;;; Commentary: ;; +;; Layer: 2 (Core UX). +;; Category: L/D. +;; Load shape: eager. +;; Eager reason: command library with no side effects; eager only by init order. +;; A deferral candidate (autoload commands) for Phase 4. +;; Top-level side effects: none. +;; Runtime requires: host-environment, system-lib, external-open-lib, cl-lib. +;; Direct test load: yes (pure command helpers). +;; ;; This library provides a simple mechanism for opening files with specific ;; extensions using your operating system’s default application rather than ;; visiting them in an Emacs buffer. It offers: -- cgit v1.2.3