]> code.delx.au - gnu-emacs/commitdiff
(gud-gdb-marker-regexp): Use colon always, not path-separator.
authorRichard M. Stallman <rms@gnu.org>
Tue, 7 Jan 1997 21:49:53 +0000 (21:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 7 Jan 1997 21:49:53 +0000 (21:49 +0000)
lisp/gud.el

index ad279c082d72d3bba83d3ac6bca9f1deb213e345..8227b8be97e6cc8b2a5396abcc36726356a99c41 100644 (file)
@@ -172,8 +172,11 @@ we're in the GUD buffer)."
   (cons "-fullname" args))
 
 (defvar gud-gdb-marker-regexp
-  (concat "\032\032\\([^" path-separator "\n]*\\)" path-separator
-         "\\([0-9]*\\)" path-separator ".*\n"))
+  ;; This used to use path-separator instead of ":";
+  ;; however, we found that on both Windows 32 and MSDOS
+  ;; a colon is correct here.
+  (concat "\032\032\\([^" ":" "\n]*\\)" ":"
+         "\\([0-9]*\\)" ":" ".*\n"))
 
 ;; There's no guarantee that Emacs will hand the filter the entire
 ;; marker at once; it could be broken up across several strings.  We