We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7356b23 commit eaa3f37Copy full SHA for eaa3f37
haskell-interactive-mode.el
@@ -992,7 +992,8 @@ don't care when the thing completes as long as it's soonish."
992
(haskell-session-set session 'next-error-region nil)
993
(haskell-session-set session 'next-error-locus nil))
994
(with-current-buffer (get-buffer-create "*haskell-process-log*")
995
- (delete-region (point-min) (point-max))
+ (let ((inhibit-read-only t))
996
+ (delete-region (point-min) (point-max)))
997
(remove-overlays))))
998
999
(defun haskell-interactive-mode-completion-at-point-function ()
0 commit comments