diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-10 15:23:23 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-10 15:23:23 -0500 |
| commit | a0e5edfb3d77f34d0f71bdc9bb8bc3a563ee6436 (patch) | |
| tree | fbd750270ec1ea07b50e719a44c409affdc2e9e6 /modules/org-refile-config.el | |
| parent | 7833f4ff97edd46d62cea1eeb0405923ec2806cb (diff) | |
| download | dotemacs-a0e5edfb3d77f34d0f71bdc9bb8bc3a563ee6436.tar.gz dotemacs-a0e5edfb3d77f34d0f71bdc9bb8bc3a563ee6436.zip | |
refactor(cj-cache): rename to cj-cache-lib for naming consistency
Library files in this codebase are suffixed `-lib' (system-lib.el is
the established precedent). The Phase 5 cache helper landed as
cj-cache.el; the spec's table proposed names without the suffix and
I followed it without checking against convention. Fix the
inconsistency now while there are only two consumers and one test.
Rename modules/cj-cache.el -> modules/cj-cache-lib.el; update
provide form, file header, and the three (require 'cj-cache) call
sites in org-agenda-config, org-refile-config, and test-cj-cache.
No behavior change.
Diffstat (limited to 'modules/org-refile-config.el')
| -rw-r--r-- | modules/org-refile-config.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/org-refile-config.el b/modules/org-refile-config.el index 8d989e4b..63343e9f 100644 --- a/modules/org-refile-config.el +++ b/modules/org-refile-config.el @@ -14,7 +14,7 @@ ;;; Code: (require 'system-lib) -(require 'cj-cache) +(require 'cj-cache-lib) ;; ----------------------------- Org Refile Targets ---------------------------- ;; sets refile targets |
