diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-24 09:59:25 -0400 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-24 09:59:25 -0400 |
| commit | 5cbcdd2d643e9cdb3447953c63688a8912c330a1 (patch) | |
| tree | dac13a99be87d514386e08425fc32c5c162b9a8f /modules/video-audio-recording.el | |
| parent | 00393730e3ecbf58c7b6c5421233ad99d8c99552 (diff) | |
| download | dotemacs-5cbcdd2d643e9cdb3447953c63688a8912c330a1.tar.gz dotemacs-5cbcdd2d643e9cdb3447953c63688a8912c330a1.zip | |
chore(elisp): clear byte-compile warnings (18 more modules)
Add declare-function/defvar declarations for lazily-loaded package symbols, reflow over-long docstrings, swap pdf-view-*-command interactive-only calls for their non-interactive twins, fix a malformed with-demoted-errors in ledger-config (the clean-buffer body was being read as the format string), and rename the unprefixed global wwwdir to cj/httpd-wwwdir (no external refs). No behavior change.
Claude-Session: https://claude.ai/code/session_01BqrdWUo9GcznYX2pZr76gZ
Diffstat (limited to 'modules/video-audio-recording.el')
| -rw-r--r-- | modules/video-audio-recording.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/video-audio-recording.el b/modules/video-audio-recording.el index 4c934ef1..1672529f 100644 --- a/modules/video-audio-recording.el +++ b/modules/video-audio-recording.el @@ -174,9 +174,10 @@ Checks if process is actually alive, not just if variable is set." (defun cj/recording-process-sentinel (process event) "Sentinel for recording processes — handles unexpected exits. PROCESS is the ffmpeg shell process, EVENT describes what happened. -This is called by Emacs when the process changes state (exits, is killed, etc.). -It clears the process variable and updates the modeline so the recording indicator -disappears even if the recording crashes or is killed externally." +This is called by Emacs when the process changes state (exits, is +killed, etc.). It clears the process variable and updates the modeline +so the recording indicator disappears even if the recording crashes or +is killed externally." (when (memq (process-status process) '(exit signal)) (cond ((eq process cj/audio-recording-ffmpeg-process) |
