diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-10 15:31:27 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-10 15:31:27 -0500 |
| commit | 2c96e16eedf79148f736f85a0c50502d4bd44341 (patch) | |
| tree | 1973ad45a295ebb649804801b88c36bbeff97dc3 /modules/cj-window-toggle-lib.el | |
| parent | 1c36525ad71904c68d4134cbf2e26301a2d98a4e (diff) | |
| download | dotemacs-2c96e16eedf79148f736f85a0c50502d4bd44341.tar.gz dotemacs-2c96e16eedf79148f736f85a0c50502d4bd44341.zip | |
refactor(cj-window-geometry): rename to cj-window-geometry-lib
Same naming-convention fix as the other library renames in this series.
Rename modules/cj-window-geometry.el -> modules/cj-window-geometry-lib.el
and tests/test-cj-window-geometry.el -> tests/test-cj-window-geometry-lib.el.
Update provide forms, file headers, and the (require 'cj-window-geometry)
call sites in cj-window-toggle-lib.el, ai-vterm.el, vterm-config.el,
and the test file.
No behavior change.
Diffstat (limited to 'modules/cj-window-toggle-lib.el')
| -rw-r--r-- | modules/cj-window-toggle-lib.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cj-window-toggle-lib.el b/modules/cj-window-toggle-lib.el index 868ee99f..6021c2eb 100644 --- a/modules/cj-window-toggle-lib.el +++ b/modules/cj-window-toggle-lib.el @@ -12,12 +12,12 @@ ;; helpers. Both helpers are pure with respect to their arguments; ;; the side effects are confined to the named state variables. ;; -;; Pulls the geometry primitives in from cj-window-geometry.el. +;; Pulls the geometry primitives in from cj-window-geometry-lib.el. ;;; Code: (require 'cl-lib) -(require 'cj-window-geometry) +(require 'cj-window-geometry-lib) (defun cj/window-toggle-capture-state (window default-direction direction-var size-var) |
