Skip to content

Commit 4010de3

Browse files
committed
The emacs upstream will raise an error now when otherwise or t
clause is not the last clause in a `cl-case`. There is a such `cl-case` in `haskell-commands.el` which is apparently a typo and should be fixed. Reference: https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=6d8f5161ead689b7a2e44a7de0a695f0ab4c833b
1 parent 5a9f807 commit 4010de3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

haskell-commands.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -677,9 +677,9 @@ happened since function invocation)."
677677
(cdr (reverse haskell-utils-async-post-command-flag))))
678678
;; Present the result only when response is valid and not asked
679679
;; to insert result
680-
(haskell-command-echo-or-present response)))
680+
(haskell-command-echo-or-present response))))
681681

682-
(haskell-utils-async-stop-watching-changes init-buffer))))))))
682+
(haskell-utils-async-stop-watching-changes init-buffer)))))))
683683

684684
(make-obsolete 'haskell-process-generate-tags
685685
'haskell-mode-generate-tags

0 commit comments

Comments
 (0)