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 | a8de252afc29c00cec9fb708cc2ef8507bd2369a (patch) | |
| tree | 9179535b5920da05c8c8283451eedbaee4eae6c0 /tests | |
| parent | 0da9daeefdc5de38c3234ad2844bff64892ecbbb (diff) | |
| download | dotemacs-a8de252afc29c00cec9fb708cc2ef8507bd2369a.tar.gz dotemacs-a8de252afc29c00cec9fb708cc2ef8507bd2369a.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 'tests')
| -rw-r--r-- | tests/test-cj-cache.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-cj-cache.el b/tests/test-cj-cache.el index 76315acd6..68f2bf0e9 100644 --- a/tests/test-cj-cache.el +++ b/tests/test-cj-cache.el @@ -12,7 +12,7 @@ (require 'cl-lib) (add-to-list 'load-path (expand-file-name "modules" user-emacs-directory)) -(require 'cj-cache) +(require 'cj-cache-lib) ;;; cj/cache-make |
