aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-20 09:01:57 -0500
committerCraig Jennings <c@cjennings.net>2025-10-20 09:01:57 -0500
commit10dce2091a7027d6015da710d8374e79be871068 (patch)
tree9c1bb4bfefdd8341245319a370f464d4d157827b
parent0012387d785f8d68a253b8cf51e40b6a1d044f23 (diff)
downloaddotemacs-10dce2091a7027d6015da710d8374e79be871068.tar.gz
dotemacs-10dce2091a7027d6015da710d8374e79be871068.zip
fix(custom-comments): update comment for eval-when-compile
Update eval-when-compile to reference cj/custom-keymap directly, as it's defined in keybindings.el, eliminating the need for requiring the whole fucking keybindings module for key mapping.
-rw-r--r--modules/custom-comments.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/custom-comments.el b/modules/custom-comments.el
index 267c4412d..16f10235c 100644
--- a/modules/custom-comments.el
+++ b/modules/custom-comments.el
@@ -16,7 +16,7 @@
;;
;;; Code:
-(eval-when-compile (require 'keybindings)) ;; for keymapping below
+(eval-when-compile (defvar cj/custom-keymap)) ;; cj/custom-keymap defined in keybindings.el
(autoload 'cj/join-line-or-region "custom-line-paragraph" nil t)
;; --------------------------- Delete Buffer Comments --------------------------