From 97134d631ec43b57827006ffebde0f85992fff47 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 20 Oct 2025 09:04:47 -0500 Subject: fix: custom-misc: correct custom-keymap evaluation Changed the evaluation of `cj/custom-keymap` to use `defvar` for proper reference, fixing potential issues in compilation without requiring 'keybindings'. --- modules/custom-misc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/custom-misc.el b/modules/custom-misc.el index 0e5e5791..8aa6d9c9 100644 --- a/modules/custom-misc.el +++ b/modules/custom-misc.el @@ -14,8 +14,8 @@ ;; ;;; Code: -(eval-when-compile (require 'keybindings)) ;; for custom-keymap - +;; cj/custom-keymap defined in keybindings.el +(eval-when-compile (defvar cj/custom-keymap)) (defun cj/jump-to-matching-paren () "Jump to the matching delimiter if point is on (or just after) one. -- cgit v1.2.3