Fix naming reported by package-lint

This commit is contained in:
Fredrik Bergroth 2017-11-16 08:59:52 +01:00 committed by James N
parent 6eb95dacfa
commit ba60c856b4
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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