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 | dea08e095b94be8b06de9ce14188beb9a47e6aa1 (patch) | |
| tree | 2ad0bdd95bc7f170cc7376a089c665a0dfa417c4 /modules/flycheck-config.el | |
| parent | 903067e618df5d64778fbe95e9468b825bafd43b (diff) | |
| download | dotemacs-dea08e095b94be8b06de9ce14188beb9a47e6aa1.tar.gz dotemacs-dea08e095b94be8b06de9ce14188beb9a47e6aa1.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/flycheck-config.el')
| -rw-r--r-- | modules/flycheck-config.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/flycheck-config.el b/modules/flycheck-config.el index 5626095c5..1afd3ae6c 100644 --- a/modules/flycheck-config.el +++ b/modules/flycheck-config.el @@ -45,6 +45,14 @@ (require 'keybindings) ;; provides cj/custom-keymap (use-package :map below) +;; ------------------------------- Declarations -------------------------------- + +(declare-function flycheck-mode "flycheck") +(declare-function flycheck-list-errors "flycheck") +(declare-function flycheck-add-mode "flycheck") +(declare-function flycheck-buffer "flycheck") +(declare-function cj/flycheck-prose-on-demand "flycheck-config") + (defun cj/prose-helpers-on () "Ensure that `abbrev-mode' and `flycheck-mode' are on in the current buffer." (interactive) |
