diff options
| author | Dmitry Gutov <dgutov@yandex.ru> | 2025-08-05 18:24:37 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-05 18:24:37 +0300 |
| commit | 120e982f47e01945c044e0762ba376741c41b76c (patch) | |
| tree | 6e5410fc7cc099b09a7b67b19dd979713b7b3040 /company-statistics.el | |
| parent | e62157d43b2c874d2edbd547c3bdfb05d0a7ae5c (diff) | |
| parent | b044735d27134282f339621519dd7dc52e1378dc (diff) | |
Merge pull request #14 from durantschoon/fix-define-minor-mode-positional-argsexternals/company-statistics
Fix deprecation warning: use keyword arguments in define-minor-mode for Emacs compatibility
Diffstat (limited to 'company-statistics.el')
| -rw-r--r-- | company-statistics.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/company-statistics.el b/company-statistics.el index 7c6326a..1e3eff1 100644 --- a/company-statistics.el +++ b/company-statistics.el @@ -346,7 +346,9 @@ preserved automatically between Emacs sessions in the default configuration. You can customize this behavior with `company-statistics-auto-save', `company-statistics-auto-restore' and `company-statistics-file'." - nil nil nil + :init-value nil + :lighter nil + :keymap nil :global t (if company-statistics-mode (progn |
