Skip to content

Commit c8e70d2

Browse files
committed
Merge pull request #192 from elixir-lang/issue-168
Fix (error "Lisp nesting exceeds `max-lisp-eval-depth'") which crashes correct indentation
2 parents 2368280 + 1ce5da9 commit c8e70d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elixir-smie.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
(forward-char)
195195
(self-call))
196196
((looking-at elixir-smie--spaces-til-eol-regexp)
197-
(move-beginning-of-line 2)
197+
(forward-char)
198198
(self-call))
199199
;; And if we're NOT on a blank line, move to the end of the line, and see
200200
;; if we're looking back at a block operator.

0 commit comments

Comments
 (0)