From 1ac95fabf3692f7b5bb184091e52ee7152ce14dd Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 7 Jan 1997 21:49:53 +0000 Subject: [PATCH] (gud-gdb-marker-regexp): Use colon always, not path-separator. --- lisp/gud.el | 7 +++++-- 1 file 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)." (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 -- 2.39.5