From 8f1359b95ef43680c5fe04991efb08b51402d5e3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 20 Oct 2025 09:04:22 -0500 Subject: fix: custom-file-buffer: Declare cj/custom-keymap for compilation Declare `cj/custom-keymap` variable to prevent compilation warnings related to undefined keymaps. --- modules/custom-file-buffer.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/custom-file-buffer.el b/modules/custom-file-buffer.el index 6ec958f0..1a3a0d68 100644 --- a/modules/custom-file-buffer.el +++ b/modules/custom-file-buffer.el @@ -16,7 +16,8 @@ ;; ;;; Code: -(eval-when-compile (require 'keybindings)) ;; for custom-keymap +;; cj/custom-keymap defined in keybindings.el +(eval-when-compile (defvar cj/custom-keymap)) (eval-when-compile (require 'ps-print)) ;; for ps-print variables (declare-function ps-print-buffer-with-faces "ps-print") (declare-function ps-print-region-with-faces "ps-print") -- cgit v1.2.3