aboutsummaryrefslogtreecommitdiff
path: root/modules/custom-misc.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-20 09:04:47 -0500
committerCraig Jennings <c@cjennings.net>2025-10-20 09:04:47 -0500
commit9cc070af1eb5bc289e79ef1f9aa105892f0a493d (patch)
tree6bfeeca49aa36265da23892237ce01b79e568a89 /modules/custom-misc.el
parent61c8619df195bb3d74107894dd1c86c99dcdd83b (diff)
downloaddotemacs-9cc070af1eb5bc289e79ef1f9aa105892f0a493d.tar.gz
dotemacs-9cc070af1eb5bc289e79ef1f9aa105892f0a493d.zip
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'.
Diffstat (limited to 'modules/custom-misc.el')
-rw-r--r--modules/custom-misc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/custom-misc.el b/modules/custom-misc.el
index 0e5e57916..8aa6d9c9c 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.