diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-03-08 02:45:02 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-03-08 02:45:02 +0100 |
commit | a9f26f1391aa6edaa728df5e05c6bcac8039289c (patch) | |
tree | aeeb346eb2978c9ee4e0316e5ec201c42e086bf2 /elisp/geiser-guile.el | |
parent | 32e7fbd6626e7a6be1e325277684b251febbe431 (diff) | |
download | geiser-guile-a9f26f1391aa6edaa728df5e05c6bcac8039289c.tar.gz geiser-guile-a9f26f1391aa6edaa728df5e05c6bcac8039289c.tar.bz2 |
Guile: slightly better compilation error regexps.
Diffstat (limited to 'elisp/geiser-guile.el')
-rw-r--r-- | elisp/geiser-guile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el index b359dcc..0523dfe 100644 --- a/elisp/geiser-guile.el +++ b/elisp/geiser-guile.el @@ -152,8 +152,8 @@ This function uses `geiser-guile-init-file' if it exists." ;;; Compilation shell regexps (defun geiser-guile--startup () (set (make-local-variable 'compilation-error-regexp-alist) - '(("^In \\([^:]+\\):" 1) - ("^ \\([0-9]+\\): " nil 1))) + '(("^In \\(/[^:\n]+\\):\n +\\([0-9]+\\): +" 1 2) + ("at \\(/[^:\n]+\\):\\([[:digit:]]+\\):\\([[:digit:]]+\\)" 1 2 3))) (compilation-setup t)) |