# HG changeset patch # User Richard M. Stallman # Date 852673793 0 # Node ID a94faa952a559823cb573fdedf3aba00956d22f8 # Parent 72276b334084264b708d0e34ad447735c4ce5e22 (gud-gdb-marker-regexp): Use colon always, not path-separator. diff -r 72276b334084 -r a94faa952a55 lisp/gud.el --- a/lisp/gud.el Tue Jan 07 19:29:28 1997 +0000 +++ b/lisp/gud.el Tue Jan 07 21:49:53 1997 +0000 @@ -172,8 +172,11 @@ (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