summaryrefslogtreecommitdiff
path: root/modules/video-audio-recording.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-15 14:08:47 -0600
committerCraig Jennings <c@cjennings.net>2025-11-15 14:08:47 -0600
commit0be39bc9fa41f14f9d6d1a449f8f2b77a502c619 (patch)
tree068b55cf2a65909e2b513f3f3f31bbd8177afd72 /modules/video-audio-recording.el
parent8c4ad1ad6f5bf3ec0c0f2c9b381d614f4a0c7f8e (diff)
fix(tests): Move cj/log-silently to system-lib.el, fix all test failures
Consolidated cj/log-silently function to system-lib.el as the canonical location for low-level utility functions. This fixes 4 failing tests in video-audio-recording that couldn't find the function. Changes: - Move cj/log-silently to system-lib.el (from system-utils.el) - Remove duplicate definition from org-agenda-config-debug.el - Remove duplicate definition from system-utils.el - Add (require 'system-lib) to all modules using cj/log-silently: - video-audio-recording.el - org-agenda-config-debug.el - media-utils.el (also removed declare-function) - elfeed-config.el (replaced system-utils with system-lib) - wrap-up.el Test Results: - Before: 112/113 passing (4 video-audio-recording tests failing) - After: 113/113 passing ✓ All tests now pass with zero failures. Fixes TODO #809-895 (move cj/log-silently to system-lib.el) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'modules/video-audio-recording.el')
-rw-r--r--modules/video-audio-recording.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/video-audio-recording.el b/modules/video-audio-recording.el
index 62a5f13e..b3151dba 100644
--- a/modules/video-audio-recording.el
+++ b/modules/video-audio-recording.el
@@ -64,6 +64,8 @@
;;
;;; Code:
+(require 'system-lib)
+
;; Forward declarations
(eval-when-compile (defvar video-recordings-dir))
(eval-when-compile (defvar audio-recordings-dir))