From 694b83ca686831776960238030f4845f5f399316 Mon Sep 17 00:00:00 2001 From: Cody Goodman Date: Sat, 21 Nov 2015 01:35:47 -0600 Subject: [PATCH] Add case for haskell-debug-parse-module regex to parse --- haskell-debug.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/haskell-debug.el b/haskell-debug.el index 4872eee27..bdd908c8f 100644 --- a/haskell-debug.el +++ b/haskell-debug.el @@ -713,9 +713,9 @@ variances in source span notation." For example: X ( /home/foo/X.hs, interpreted ) - +Main ( /home/foo/X.hs, /home/foo/X.o ) " - (if (string-match "^\\([^ ]+\\)[ ]+( \\([^ ]+?\\), [a-z]+ )$" + (if (string-match "\\([^ ]+\\)[ ]+( \\([^ ]+?\\), [/a-zA-Z0-9\.]+ )$" string) (list :module (match-string 1 string) :path (match-string 2 string))