branch: elpa/d-mode
commit 23a366114586e60b6ab8f1c67d790c7ec7dc80e9
Merge: b682601 a967acd
Author: Vladimir Panteleev <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #72 from nordlow/fix-d-exceptions-regexp
    
    Correct d-exceptions regexp
---
 d-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/d-mode.el b/d-mode.el
index ea7bc86..5c955b6 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -225,7 +225,7 @@ The expression is added to `compilation-error-regexp-alist' 
and
 
 (add-to-list 'compilation-error-regexp-alist-alist
              '(d-exceptions
-               "^[^@]*?@\\(.*?\\)(\\([0-9]+\\)):"
+               "^[a-zA-z0-9\.]*?@\\(.*?\\)(\\([0-9]+\\)):"
                1 2 nil 2))
 (add-to-list 'compilation-error-regexp-alist 'd-exceptions)
 

Reply via email to