branch: elpa/evil-indent-plus
commit 4aad36e7134af91e25ae4a1739c93a38e013c5c2
Author: Eivind Fonn <[email protected]>
Commit: Eivind Fonn <[email protected]>
Correct some function names
---
evil-indent-plus.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/evil-indent-plus.el b/evil-indent-plus.el
index 221200cfc1..4a2137f7ee 100644
--- a/evil-indent-plus.el
+++ b/evil-indent-plus.el
@@ -127,9 +127,9 @@ If `point' is supplied and non-nil it will return the begin
and end of the block
(let ((begin (cl-first range))
(end (cl-second range))
nend)
- (setq nend (evil-indent-plus--seek end 1 t t
'evil-plus-indent--empty-line-p))
+ (setq nend (evil-indent-plus--seek end 1 t t
'evil-indent-plus--empty-line-p))
(when (= nend end)
- (setq begin (evil-indent-plus--seek begin -1 t t
'evil-plus-indent--empty-line-p)))
+ (setq begin (evil-indent-plus--seek begin -1 t t
'evil-indent-plus--empty-line-p)))
(list begin nend)))
(evil-define-text-object evil-indent-plus-i-indent (&optional count beg end
type)