aboutsummaryrefslogtreecommitdiff
path: root/modules/erc-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-24 19:59:28 -0500
committerCraig Jennings <c@cjennings.net>2026-05-24 19:59:28 -0500
commit08014b2f15e099a1c5e662a17a41290f37aeebf4 (patch)
treefba90116d0bb59b90d57489bdc6bc47f853c5384 /modules/erc-config.el
parent47f222f66d7d481fb0d50661d64f49440455ff6d (diff)
downloaddotemacs-08014b2f15e099a1c5e662a17a41290f37aeebf4.tar.gz
dotemacs-08014b2f15e099a1c5e662a17a41290f37aeebf4.zip
refactor(load-graph): route C-; registration through the keymap API
Migrated all 31 cj/custom-keymap registration sites across 24 modules from direct (keymap-set cj/custom-keymap ...) calls to cj/register-prefix-map and cj/register-command. Consumers no longer reference cj/custom-keymap directly, so keybindings.el is the sole owner of the C-; prefix and modules reach it only through the API (each already requires keybindings from Phase 2). Behavior-preserving: I dumped every C-; binding before and after the migration and they're identical: 279 bindings, each resolving to the same command. The which-key label blocks are untouched, since they use string key descriptions and never assumed the keymap existed. I byte-compiled all 24 files (no new free-variable warnings, because the cj/custom-keymap references are gone), and make test, validate-modules, and an init load all pass.
Diffstat (limited to 'modules/erc-config.el')
-rw-r--r--modules/erc-config.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/erc-config.el b/modules/erc-config.el
index e63b12eb..22ba7f53 100644
--- a/modules/erc-config.el
+++ b/modules/erc-config.el
@@ -192,7 +192,7 @@ Auto-adds # prefix if missing. Offers completion from configured channels."
"q" #'erc-part-from-channel ;; quit channel
"Q" #'erc-quit-server) ;; Quit ERC entirely
-(keymap-set cj/custom-keymap "E" cj/erc-keymap)
+(cj/register-prefix-map "E" cj/erc-keymap)
(with-eval-after-load 'which-key
(which-key-add-key-based-replacements
"C-; E" "ERC chat menu"