diff --git a/modules/editor/evil/autoload/textobjects.el b/modules/editor/evil/autoload/textobjects.el index 5237c574b..46cc29307 100644 --- a/modules/editor/evil/autoload/textobjects.el +++ b/modules/editor/evil/autoload/textobjects.el @@ -53,7 +53,7 @@ This excludes the protocol and querystring." ("`" . "`") ("‘" . "’") ("“" . "”")))) - (evil-textobj-anyblock-inner-block count beg end type))) + (evil-textobj-anyblock--make-textobj beg end type count nil))) ;;;###autoload (autoload '+evil:outer-any-quote "editor/evil/autoload/textobjects" nil nil) (evil-define-text-object +evil:outer-any-quote (count &optional beg end type) @@ -65,4 +65,4 @@ This excludes the protocol and querystring." ("`" . "`") ("‘" . "’") ("“" . "”")))) - (evil-textobj-anyblock-a-block count beg end type))) + (evil-textobj-anyblock--make-textobj beg end type count t)))