aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-18 00:15:01 -0500
committerCraig Jennings <c@cjennings.net>2025-10-18 00:15:01 -0500
commit7bf8972d58388e21fabc6344ed7555d7a00b2dc1 (patch)
tree478742fc2d254482928f0cce275d1d655df312c3
parent94ffc2ea684300f4574105aa6975f7e236676a24 (diff)
downloaddotemacs-7bf8972d58388e21fabc6344ed7555d7a00b2dc1.tar.gz
dotemacs-7bf8972d58388e21fabc6344ed7555d7a00b2dc1.zip
fix: buffer-and-file-map: symbol vs string error
-rw-r--r--modules/custom-file-buffer.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/custom-file-buffer.el b/modules/custom-file-buffer.el
index 96cc4f45f..6ae6d6d4b 100644
--- a/modules/custom-file-buffer.el
+++ b/modules/custom-file-buffer.el
@@ -173,7 +173,7 @@ Do not save the deleted text in the kill ring."
"l" #'cj/copy-link-to-buffer-file
"P" #'cj/copy-path-to-buffer-file-as-kill)
-(keymap-set cj/custom-keymap "b" 'cj/buffer-and-file-map)
+(keymap-set cj/custom-keymap "b" cj/buffer-and-file-map)
(provide 'custom-file-buffer)
;;; custom-file-buffer.el ends here.