Skip to content

Keyword do is not open expression for indentation #873

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 14, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion haskell-indentation.el
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ parser. If parsing ends here, set indentation to left-indent."
(haskell-indentation-add-layout-indent)
(throw 'parse-end nil))
;; after an 'open' expression such as 'if', exit
(unless (member (car parser) '("(" "[" "{" "do" "case"))
(unless (member (car parser) '("(" "[" "{" "case"))
(throw 'return nil)))))))))

(defun haskell-indentation-test-indentations ()
Expand Down
2 changes: 1 addition & 1 deletion tests/haskell-indentation-tests.el
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ fun = do { putStrLn \"X\";
}"
((1 0) 0)
((2 0) 9 11)
((3 0) 0 6))
((3 0) 0))

(hindent-test "13* Don't indent after deriving""
data X = X
Expand Down