branch: externals/avy commit d9634efe2631b608cb28c420f54d6e6689805cf7 Author: Javier Olaechea <pir...@gmail.com> Commit: Javier Olaechea <pir...@gmail.com>
Fix byte-compile warning about linum-mode being possibly undefined In end of data: avy.el:1675:10: Warning: the function ‘linum-mode’ is not known to be defined. --- avy.el | 1 + 1 file changed, 1 insertion(+) diff --git a/avy.el b/avy.el index 0ccd056768..11f4edb579 100644 --- a/avy.el +++ b/avy.el @@ -1664,6 +1664,7 @@ When BOTTOM-UP is non-nil, display avy candidates from top to bottom" (defvar linum-overlays) (defvar linum-format) (declare-function linum--face-width "linum") +(declare-function linum-mode "linum") (define-minor-mode avy-linum-mode "Minor mode that uses avy hints for `linum-mode'."