aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Voelker1997-09-02 19:39:35 +0000
committerGeoff Voelker1997-09-02 19:39:35 +0000
commit15cf3eccb85035827ab12ee7875797c20d11fe2f (patch)
tree1fb939cc369b85515ebc0183f54fdd5d5f977bfa
parent9d702ce661feca4d2ae568d4acf89ccac9ba0701 (diff)
downloademacs-15cf3eccb85035827ab12ee7875797c20d11fe2f.tar.gz
emacs-15cf3eccb85035827ab12ee7875797c20d11fe2f.zip
(gud-gdb-marker-regexp): Allow for drive letter and colon.
-rw-r--r--lisp/gud.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index 419ce21baea..12a96cfee1c 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -183,7 +183,7 @@ we're in the GUD buffer)."
183 ;; This used to use path-separator instead of ":"; 183 ;; This used to use path-separator instead of ":";
184 ;; however, we found that on both Windows 32 and MSDOS 184 ;; however, we found that on both Windows 32 and MSDOS
185 ;; a colon is correct here. 185 ;; a colon is correct here.
186 (concat "\032\032\\([^" ":" "\n]*\\)" ":" 186 (concat "\032\032\\(.:?[^" ":" "\n]*\\)" ":"
187 "\\([0-9]*\\)" ":" ".*\n")) 187 "\\([0-9]*\\)" ":" ".*\n"))
188 188
189;; There's no guarantee that Emacs will hand the filter the entire 189;; There's no guarantee that Emacs will hand the filter the entire