diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-17 22:08:30 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-17 22:08:30 -0500 |
| commit | 55f0af46630d6447a0378e90e79cdc2a965fd10a (patch) | |
| tree | 85c2417ee77b192b7c783944a9cb609f81b93465 | |
| parent | 41221e25094da78383d7a3b35c5287172c44e9f5 (diff) | |
| download | dotemacs-55f0af46630d6447a0378e90e79cdc2a965fd10a.tar.gz dotemacs-55f0af46630d6447a0378e90e79cdc2a965fd10a.zip | |
fix: cj/custom-keymap: string versus symbol issue
| -rw-r--r-- | modules/custom-comments.el | 2 |
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. |
