branch: elpa/evil-args
commit 43c7fea7ee6f680358195108cb90b777f9cbf1cd
Author: wcsmith <wconnorsm...@gmail.com>
Commit: wcsmith <wconnorsm...@gmail.com>

    Bugfix for evil-jump-out-args.
---
 evil-args.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/evil-args.el b/evil-args.el
index 84a93aaf0c..3613d05a38 100644
--- a/evil-args.el
+++ b/evil-args.el
@@ -215,7 +215,7 @@
        (save-excursion
          (while (< begin 0)
            (if (not (re-search-backward all-regexp nil t))
-               (setq begin (- (point-at-bol)) 1)
+               (setq begin (- (point-at-bol) 1))
              (while (looking-at-p closers-regexp)
                (evil-jump-item)
                (backward-char))

Reply via email to