Skip to content

Commit 3475238

Browse files
committed
Merge pull request #1123 from issue-dispenser/master
Support spaces in project directories
2 parents 42b1db5 + 2fb447f commit 3475238

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

haskell-compile.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The `%s' placeholder is replaced by the current buffer's filename."
6464

6565
(defconst haskell-compilation-error-regexp-alist
6666
`((,(concat
67-
"^ *\\(?1:[^ \t\r\n]+?\\):"
67+
"^ *\\(?1:[^\t\r\n]+?\\):"
6868
"\\(?:"
6969
"\\(?2:[0-9]+\\):\\(?4:[0-9]+\\)\\(?:-\\(?5:[0-9]+\\)\\)?" ;; "121:1" & "12:3-5"
7070
"\\|"

haskell-load.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ When MODULE-BUFFER is non-NIL, paint error overlays."
537537
session
538538
error-msg
539539
file
540-
(plist-get (haskell-process-parse-error final-msg) :line))
540+
line)
541541
t)))))))
542542

543543
(defun haskell-interactive-show-load-message (session type module-name file-name echo th)

0 commit comments

Comments
 (0)