summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2010-03-08 02:45:02 +0100
committerJose Antonio Ortega Ruiz <jao@gnu.org>2010-03-08 02:45:02 +0100
commita9f26f1391aa6edaa728df5e05c6bcac8039289c (patch)
treeaeeb346eb2978c9ee4e0316e5ec201c42e086bf2
parent32e7fbd6626e7a6be1e325277684b251febbe431 (diff)
downloadgeiser-guile-a9f26f1391aa6edaa728df5e05c6bcac8039289c.tar.gz
geiser-guile-a9f26f1391aa6edaa728df5e05c6bcac8039289c.tar.bz2
Guile: slightly better compilation error regexps.
-rw-r--r--elisp/geiser-guile.el4
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))