Skip to content

Commit a6983a5

Browse files
author
Keith Pinson
committed
Seems to fix the infinite loop
1 parent d26a1d2 commit a6983a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scala-mode-indent.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,8 @@ Returns point or (point-min) if not inside a block."
599599
(save-excursion
600600
(goto-char point)
601601
(let (result
602-
(stack init-stack)
603-
last-indentation)
602+
last-indentation
603+
(stack init-stack))
604604
(while (and (not result) (> (point) 1))
605605
(setq stack
606606
(if (looking-at-p "\\.")

0 commit comments

Comments
 (0)