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.
2 parents a2950a1 + 0597165 commit be9044bCopy full SHA for be9044b
inf-haskell.el
@@ -215,9 +215,9 @@ setting up the inferior-haskell buffer."
215
216
(defun inferior-haskell-send-decl-post-filter (string)
217
(when (and inferior-haskell-send-decl-post-filter-on
218
- #1=(string-match inferior-haskell-multiline-prompt-re string))
+ (string-match inferior-haskell-multiline-prompt-re string))
219
;; deleting sequence of `%s|' multiline promts
220
- (while #1#
+ (while (string-match inferior-haskell-multiline-prompt-re string)
221
(setq string (substring string (match-end 0))))
222
;; deleting regular prompts
223
(setq string (replace-regexp-in-string comint-prompt-regexp "" string)
0 commit comments