branch: elpa/haskell-mode commit 3112f5f4a5de9658b409e9994d0038962b01cb2b Author: Steve Purcell <st...@sanityinc.com> Commit: Steve Purcell <st...@sanityinc.com>
Remove no-op cond clause (bytecomp warning) --- haskell-indentation.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/haskell-indentation.el b/haskell-indentation.el index 4c2525121c..1576741b7e 100644 --- a/haskell-indentation.el +++ b/haskell-indentation.el @@ -1135,8 +1135,7 @@ layout starts." (haskell-indentation-add-indentation (+ left-indent haskell-indentation-starter-offset)) (throw 'parse-end nil)) - (setq phrase1 (cddr phrase))) - ((string= (cadr phrase) "in")))))) + (setq phrase1 (cddr phrase))))))) (defun haskell-indentation-add-indentation (indent) "" ; FIXME