summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2012-07-01 01:56:25 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2012-07-01 01:56:25 +0200
commit54aee8ec965269faa485f856aba0afd15389306e (patch)
tree8552c8399efda622f963529dcf5cb28b9697a49e /elisp
parentaa5c46bf7e24eb790f05cd1336130a459a324efa (diff)
downloadgeiser-54aee8ec965269faa485f856aba0afd15389306e.tar.gz
geiser-54aee8ec965269faa485f856aba0afd15389306e.tar.bz2
Correctly buttonizing paths with leading spaces in DBG buffers
Just adjusting a regexp.
Diffstat (limited to 'elisp')
-rw-r--r--elisp/geiser-edit.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-edit.el b/elisp/geiser-edit.el
index 0fd3b89..2838c77 100644
--- a/elisp/geiser-edit.el
+++ b/elisp/geiser-edit.el
@@ -1,6 +1,6 @@
;;; geiser-edit.el -- scheme edit locations
-;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz
+;; Copyright (C) 2009, 2010, 2012 Jose Antonio Ortega Ruiz
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the Modified BSD License. You should
@@ -145,7 +145,7 @@ or following links in error buffers.")
'help-echo "Go to error location"))
(defconst geiser-edit--default-file-rx
- "^\\([^<>:\n\"]+\\):\\([0-9]+\\):\\([0-9]+\\)")
+ "^[ \t]*\\([^<>:\n\"]+\\):\\([0-9]+\\):\\([0-9]+\\)")
(defun geiser-edit--buttonize-files (&optional rx no-fill)
(let ((rx (or rx geiser-edit--default-file-rx))