aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gud.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index ad279c082d7..8227b8be97e 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -172,8 +172,11 @@ we're in the GUD buffer)."
172 (cons "-fullname" args)) 172 (cons "-fullname" args))
173 173
174(defvar gud-gdb-marker-regexp 174(defvar gud-gdb-marker-regexp
175 (concat "\032\032\\([^" path-separator "\n]*\\)" path-separator 175 ;; This used to use path-separator instead of ":";
176 "\\([0-9]*\\)" path-separator ".*\n")) 176 ;; however, we found that on both Windows 32 and MSDOS
177 ;; a colon is correct here.
178 (concat "\032\032\\([^" ":" "\n]*\\)" ":"
179 "\\([0-9]*\\)" ":" ".*\n"))
177 180
178;; There's no guarantee that Emacs will hand the filter the entire 181;; There's no guarantee that Emacs will hand the filter the entire
179;; marker at once; it could be broken up across several strings. We 182;; marker at once; it could be broken up across several strings. We