From 7c7104ea5b22bf31d6c087b46f80ce2a6e215638 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Fri, 26 Jun 2026 10:31:25 -0400 Subject: chore(elisp): clear byte-compile warnings via declarations and a loop rewrite Add the missing declare-function and defvar declarations that silence the not-known-to-be-defined and free-variable warnings in local-repository, org-webclipper, and weather-config. Rewrite jumper--location-exists-p from dotimes to cl-loop thereis, which fixes a spurious unused-variable warning and short-circuits on the first match. The remaining obsolete-generalized-variable warnings (point in pearl-config, buffer-substring in org-webclipper) come from upstream package macros (pearl, org-web-tools) and are not fixable in our code. --- modules/local-repository.el | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/local-repository.el') diff --git a/modules/local-repository.el b/modules/local-repository.el index 6376d9f73..9ce7a1af3 100644 --- a/modules/local-repository.el +++ b/modules/local-repository.el @@ -16,6 +16,8 @@ (require 'elpa-mirror nil t) ;; optional; cj/update-localrepo-repository fails at call-time if absent +(declare-function elpamr-create-mirror-for-installed "elpa-mirror") + ;; ------------------------------ Utility Function ----------------------------- -- cgit v1.2.3