Try to fix each error only once

This commit is contained in:
Alejandro Serrano 2014-08-24 13:29:12 +02:00 committed by Daniel Gröber
parent 7277d4d6c3
commit c78274f7f6
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ nil does not display errors/warnings.
(defun ghc-check-insert-from-warning ()
(interactive)
(let ((ret t))
(dolist (data (mapcar (lambda (ovl) (overlay-get ovl 'ghc-msg)) (ghc-check-overlay-at (point))) ret)
(dolist (data (delete-dups (mapcar (lambda (ovl) (overlay-get ovl 'ghc-msg)) (ghc-check-overlay-at (point)))) ret)
(save-excursion
(cond
((string-match "Inferred type: \\|no type signature:" data)