aboutsummaryrefslogtreecommitdiff
path: root/evil-common.el
diff options
context:
space:
mode:
Diffstat (limited to 'evil-common.el')
-rw-r--r--evil-common.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-common.el b/evil-common.el
index 985fdb3..c305c25 100644
--- a/evil-common.el
+++ b/evil-common.el
@@ -1360,11 +1360,11 @@ last successful match (that caused COUNT to reach zero)."
(cond
((> dir 0)
(while (progn
- (up-list dir)
+ (up-list dir t)
(/= (char-before) close))))
(t
(while (progn
- (up-list dir)
+ (up-list dir t)
(/= (char-after) open)))))
(error (goto-char pnt)))))))
(cond