diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-24 09:51:38 -0400 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-24 09:51:38 -0400 |
| commit | 903067e618df5d64778fbe95e9468b825bafd43b (patch) | |
| tree | d7d722500230e9863e7cec7eb212bb29678c9afc /modules/chrono-tools.el | |
| parent | e7001fba1ebfe337ae657fe97413c9852e03302c (diff) | |
| download | dotemacs-903067e618df5d64778fbe95e9468b825bafd43b.tar.gz dotemacs-903067e618df5d64778fbe95e9468b825bafd43b.zip | |
chore(elisp): clear byte-compile warnings (calibredb, config-utilities, tramp, diff, chrono, auth)
Add declare-function/defvar declarations for lazily-loaded package functions and variables so each module compiles cleanly standalone; config-utilities wraps two lazy EmacSQL oref slot reads in with-no-warnings. No behavior change.
Claude-Session: https://claude.ai/code/session_01BqrdWUo9GcznYX2pZr76gZ
Diffstat (limited to 'modules/chrono-tools.el')
| -rw-r--r-- | modules/chrono-tools.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/chrono-tools.el b/modules/chrono-tools.el index 6f88b2018..744781268 100644 --- a/modules/chrono-tools.el +++ b/modules/chrono-tools.el @@ -22,6 +22,11 @@ (require 'user-constants) +;; Declared by the lazily-loaded `tmr' package; quiet the byte-compiler +;; without forcing the package to load. +(defvar tmr-sound-file) +(defvar tmr-descriptions-list) + ;; -------------------------------- Time Zones --------------------------------- (use-package time-zones |
