Skip to content

Commit

Permalink
Strip newlines from haskell-process-do-type
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdone committed Apr 8, 2014
1 parent 5128d4d commit 099c82c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion haskell-process.el
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ possible, using GHCi's :type."
(t
(with-current-buffer (nth 2 state)
(goto-char (line-beginning-position))
(insert (format "%s\n" response))))))))))
(insert (format "%s\n" (replace-regexp-in-string "\n" " " response)))))))))))

;;;###autoload
(defun haskell-process-do-info (&optional prompt-value)
Expand Down

0 comments on commit 099c82c

Please sign in to comment.