diff options
author | David Robillard <d@drobilla.net> | 2018-08-07 18:48:39 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-08-07 18:48:39 +0200 |
commit | 518a761476c4901ef55f9621843c313a669758f1 (patch) | |
tree | 38d90ae9104ee708ba753795867a4f677b625cbf /emacs | |
parent | dfe7cbfa9d357f4eeb6129f8002af851e743db08 (diff) | |
download | dotfiles-518a761476c4901ef55f9621843c313a669758f1.tar.gz dotfiles-518a761476c4901ef55f9621843c313a669758f1.tar.bz2 dotfiles-518a761476c4901ef55f9621843c313a669758f1.zip |
Add matcher for glibc assertion failures
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/init.el | 5 |
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) |