branch: elpa/scroll-on-jump commit 44a7654089d71a016469fe496d8ebc48bc305f41 Author: Campbell Barton <ideasma...@gmail.com> Commit: Campbell Barton <ideasma...@gmail.com>
Cleanup: sharp quite function calls --- scroll-on-jump.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scroll-on-jump.el b/scroll-on-jump.el index e3a0f59ac7..e97b0b49c4 100644 --- a/scroll-on-jump.el +++ b/scroll-on-jump.el @@ -139,9 +139,9 @@ Argument ALSO-MOVE-POINT When non-nil, move the POINT as well." ;; the mark needs to be set to the `point'. ;; https://github.com/emacs-evil/evil/issues/1708 (when (and (fboundp 'evil-visual-state-p) - (funcall 'evil-visual-state-p) + (funcall #'evil-visual-state-p) (fboundp 'evil-visual-type) - (eq (funcall 'evil-visual-type) 'line) + (eq (funcall #'evil-visual-type) 'line) (boundp 'evil-visual-point)) (let ((mark (symbol-value 'evil-visual-point))) (when (markerp mark)