branch: elpa/d-mode
commit a967acdc0c4a86d9b69cb596f5c5784bcaaceaf7
Author: Per Nordlöw <[email protected]>
Commit: Per Nordlöw <[email protected]>
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 6958637..bb6445a 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -202,7 +202,7 @@ operators."
(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)