diff --git a/evil-collection-util.el b/evil-collection-util.el index 532e8fa..8194f02 100644 --- a/evil-collection-util.el +++ b/evil-collection-util.el @@ -67,4 +67,4 @@ This assumes the :bindings key is at the end." "W" 'evil-forward-WORD-begin))) (provide 'evil-collection-util) -;;; evil-integration-base.el ends here +;;; evil-collection-util.el ends here diff --git a/evil-debbugs.el b/evil-debbugs.el index 91cff6c..4905281 100644 --- a/evil-debbugs.el +++ b/evil-debbugs.el @@ -30,7 +30,7 @@ (require 'debbugs nil t) (require 'evil) -(defun evil-diff-mode-setup () +(defun evil-debbugs-mode-setup () (evil-set-initial-state 'debbugs-gnu-mode 'motion) (evil-define-key 'motion debbugs-gnu-mode-map diff --git a/evil-elisp-mode.el b/evil-elisp-mode.el index 0e5cbf7..09f29e4 100644 --- a/evil-elisp-mode.el +++ b/evil-elisp-mode.el @@ -30,7 +30,7 @@ (require 'elisp-mode) (require 'evil) -(defun evil-collection-last-sexp-setup-props (beg end value alt1 alt2) +(defun evil-elisp-mode-last-sexp-setup-props (beg end value alt1 alt2) "Set up text properties for the output of `elisp--eval-last-sexp'. BEG and END are the start and end of the output in current-buffer. VALUE is the Lisp value printed, ALT1 and ALT2 are strings for the @@ -51,7 +51,7 @@ alternative printed representations that can be displayed." printed-value))))) (defun evil-elisp-mode-setup () (advice-add 'last-sexp-setup-props - :override #'evil-collection-last-sexp-setup-props)) + :override #'evil-elisp-mode-last-sexp-setup-props)) (provide 'evil-elisp-mode) ;;; evil-elisp-mode.el ends here