Mercurial > emacs
changeset 16843:a94faa952a55
(gud-gdb-marker-regexp): Use colon always, not path-separator.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 07 Jan 1997 21:49:53 +0000 |
parents | 72276b334084 |
children | f919de623142 |
files | lisp/gud.el |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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