Skip to content

Commit

Permalink
Strip out extraneous prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdone committed Apr 6, 2014
1 parent 58810a1 commit b5ca602
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions haskell-process.el
Original file line number Diff line number Diff line change
Expand Up @@ -1068,10 +1068,11 @@ If I break, you can:
(when session
(if (haskell-process-cmd (haskell-session-process session))
(haskell-process-collect session
response
(haskell-session-process session))
(haskell-interactive-mode-insert-garbage session
response)))))
response
(haskell-session-process session))
(haskell-interactive-mode-insert-garbage
session
(replace-regexp-in-string "\4" "" response))))))

(defun haskell-process-log (msg)
"Write MSG to the process log (if enabled)."
Expand Down

0 comments on commit b5ca602

Please sign in to comment.