From c409669179b1b370988f97f95af59e1ebdc514eb Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 20 Oct 2025 09:03:26 -0500 Subject: fix(custom-case): Correct eval-when-compile for custom-keymap Address an issue by defining `cj/custom-keymap` within eval-when-compile, ensuring proper compilation without loading the whole damn `keybindings` file. --- modules/custom-case.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/custom-case.el b/modules/custom-case.el index 2a87155b..ca5563b2 100644 --- a/modules/custom-case.el +++ b/modules/custom-case.el @@ -16,7 +16,7 @@ ;; ;;; Code: -(eval-when-compile (require 'keybindings)) +(eval-when-compile (defvar cj/custom-keymap)) ;; cj/custom-keymap defined in keybindings.el (defun cj/upcase-dwim () "Upcase the active region, or upcase the symbol at point if no region." -- cgit v1.2.3