We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e938b1 commit 8eb6029Copy full SHA for 8eb6029
rust-mode.el
@@ -639,7 +639,8 @@ This is written mainly to be used as `end-of-defun-function' for Rust."
639
;; didn't find a match
640
(> angle-brackets 0)
641
;; we have no guarantee of a match, so give up eventually
642
- (< (- start-point (point)) blink-matching-paren-distance)
+ (or (not blink-matching-paren-distance)
643
+ (< (- start-point (point)) blink-matching-paren-distance))
644
;; didn't hit the top of the buffer
645
(> (point) (point-min))
646
;; didn't hit something else weird like a `;`
0 commit comments