aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-17 22:08:30 -0500
committerCraig Jennings <c@cjennings.net>2025-10-17 22:08:30 -0500
commit55f0af46630d6447a0378e90e79cdc2a965fd10a (patch)
tree85c2417ee77b192b7c783944a9cb609f81b93465 /modules
parent41221e25094da78383d7a3b35c5287172c44e9f5 (diff)
downloaddotemacs-55f0af46630d6447a0378e90e79cdc2a965fd10a.tar.gz
dotemacs-55f0af46630d6447a0378e90e79cdc2a965fd10a.zip
fix: cj/custom-keymap: string versus symbol issue
Diffstat (limited to 'modules')
-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 f7aadd660..b7052c660 100644
--- a/modules/custom-comments.el
+++ b/modules/custom-comments.el
@@ -169,7 +169,7 @@ Leverages cj/comment-centered."
"-" #'cj/comment-hyphen
"b" #'cj/comment-box
"D" #'cj/delete-buffer-comments)
-(keymap-set cj/custom-keymap "C" 'cj/comment-map)
+(keymap-set cj/custom-keymap "C" cj/comment-map)
(provide 'custom-comments)
;;; custom-comments.el ends here.