summaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/init.el')
-rw-r--r--emacs/.emacs.d/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 7be2f52..d60ff8e 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -275,6 +275,11 @@
(setq compilation-error-regexp-alist
(delete 'maven compilation-error-regexp-alist))
+;; Add matcher for glibc assertion failures
+(add-to-list
+ 'compilation-error-regexp-alist
+ '("[[:print:]]+: \\([^:]+\\):\\([[:digit:]]+\\):.*Assertion.* failed.\n$" 1 2))
+
;;; Key bindings
(global-set-key (kbd "C-<left>") 'previous-buffer)