diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-20 09:03:26 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-20 09:03:26 -0500 |
| commit | 96eb0c012782f17d14f314b27acec175fcf32c52 (patch) | |
| tree | 1b1b694ecede13be643562ba4db1e321ccaa7672 /modules/custom-case.el | |
| parent | 10dce2091a7027d6015da710d8374e79be871068 (diff) | |
| download | dotemacs-96eb0c012782f17d14f314b27acec175fcf32c52.tar.gz dotemacs-96eb0c012782f17d14f314b27acec175fcf32c52.zip | |
fix(custom-case): Correct eval-when-compile for custom-keymap
Address an issue by defining `cj/custom-keymap` within
eval-when-compile, ensuring proper compilation without loading
the whole damn `keybindings` file.
Diffstat (limited to 'modules/custom-case.el')
| -rw-r--r-- | modules/custom-case.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/custom-case.el b/modules/custom-case.el index 2a87155bc..ca5563b2a 100644 --- a/modules/custom-case.el +++ b/modules/custom-case.el @@ -16,7 +16,7 @@ ;; ;;; Code: -(eval-when-compile (require 'keybindings)) +(eval-when-compile (defvar cj/custom-keymap)) ;; cj/custom-keymap defined in keybindings.el (defun cj/upcase-dwim () "Upcase the active region, or upcase the symbol at point if no region." |
