Skip to content

Commit

Permalink
Fix bracketing mistake in merlin--highlight (fixes #1290)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiase committed Jul 16, 2021
1 parent 384da06 commit 771a335
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emacs/merlin.el
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,9 @@ containing fields file, line and col."
(overlay-put overlay 'face face)
(overlay-put overlay 'merlin-kind 'highlight)
(if merlin-allow-sit-for
(unwind-protect (sit-for 60) (delete-overlay overlay)))
(unwind-protect (sit-for 60) (delete-overlay overlay))
(run-with-idle-timer 0.5 nil
(lambda () (delete-overlay overlay)))))
(lambda () (delete-overlay overlay))))))

;; Position management

Expand Down

0 comments on commit 771a335

Please sign in to comment.